Gnome2::ThumbnailFactory(3pm) User Contributed Perl Documentation Gnome2::ThumbnailFactory(3pm)NAME
Gnome2::ThumbnailFactory - wrapper for GnomeThumbnailFactory
HIERARCHY
Glib::Object
+----Gnome2::ThumbnailFactory
METHODS
thumbnailfactory = Gnome2::ThumbnailFactory->new ($size)
o $size (Gnome2::ThumbnailSize)
boolean = $factory->can_thumbnail ($uri, $mime_type, $mtime)
o $uri (string)
o $mime_type (string)
o $mtime (a timestamp)
$factory->create_failed_thumbnail ($uri, $mtime)
o $uri (string)
o $mtime (a timestamp)
pixbuf = $factory->generate_thumbnail ($uri, $mime_type)
o $uri (string)
o $mime_type (string)
boolean = $factory->has_valid_failed_thumbnail ($uri, $mtime)
o $uri (string)
o $mtime (a timestamp)
string = $factory->lookup ($uri, $mtime)
o $uri (string)
o $mtime (a timestamp)
$factory->save_thumbnail ($thumbnail, $uri, $original_mtime)
o $thumbnail (Gtk2::Gdk::Pixbuf)
o $uri (string)
o $original_mtime (a timestamp)
ENUMS AND FLAGS
enum Gnome2::ThumbnailSize
o 'normal' / 'GNOME_THUMBNAIL_SIZE_NORMAL'
o 'large' / 'GNOME_THUMBNAIL_SIZE_LARGE'
SEE ALSO
Gnome2, Glib::Object
COPYRIGHT
Copyright (C) 2003-2004 by the gtk2-perl team.
This software is licensed under the LGPL. See Gnome2 for a full notice.
perl v5.14.2 2011-11-16 Gnome2::ThumbnailFactory(3pm)
Check Out this Related Man Page
Gnome2::Wnck::Workspace(3pm) User Contributed Perl Documentation Gnome2::Wnck::Workspace(3pm)NAME
Gnome2::Wnck::Workspace - an object representing a workspace
HIERARCHY
Glib::Object
+----Gnome2::Wnck::Workspace
METHODS
$space->activate ($timestamp)
o $timestamp (unsigned)
$space->change_name ($name)
o $name (string)
integer = $space->get_height
boolean = $space->is_virtual
integer = $space->get_layout_column
integer = $space->get_layout_row
string = $space->get_name
workspace or undef = $space->get_neighbor ($direction)
o $direction (Gnome2::Wnck::MotionDirection)
integer = $space->get_number
screen = $space->get_screen
integer = $space->get_viewport_x
integer = $space->get_viewport_y
integer = $space->get_width
SIGNALS
name-changed (Gnome2::Wnck::Workspace)
ENUMS AND FLAGS
enum Gnome2::Wnck::MotionDirection
o 'up' / 'WNCK_MOTION_UP'
o 'down' / 'WNCK_MOTION_DOWN'
o 'left' / 'WNCK_MOTION_LEFT'
o 'right' / 'WNCK_MOTION_RIGHT'
SEE ALSO
Gnome2::Wnck, Glib::Object
COPYRIGHT
Copyright (C) 2003-2006 by the gtk2-perl team.
This software is licensed under the LGPL. See Gnome2::Wnck for a full notice.
perl v5.14.2 2011-11-16 Gnome2::Wnck::Workspace(3pm)
Hi,
I am trying to do achieving of files by months.
find /test -name \*.* -mtime +30
will give me the result of all modified files after 30 days.
But lets say i want to list all files that is modified in last months... what is the command to do it?
Thanks! (13 Replies)
I am trying to run this find:
find /opt/batch/mdic2/outgoing -name MAFRA*.txt -mtime +7
and I keep getting the following error:
find: cannot stat MAFRA*.txt
What's happening? (7 Replies)
Hi All,
Thanks in advance for reading and any posts...
I have to delete a lot of files (about 6 pages of a4 (ls -ltr)) but I have to keep some as well. I would normally do an rm * to get rid of them all, but thats not what I want to do. Is there anyway I could rm * but add in a list of... (8 Replies)
hi folks,
I want to select all files older than 13 days from a specified directory
for that i used
find /home/amar -name '*.*' -mtime 13
but it gives me all the files from subdirectories also, I dont want that
I want files only from /home/amar and not from /home/amar/abc/..
which... (8 Replies)
Help me with this please...
If i am entering command ls -l, here is what it gives:
-rw-r----- 1 user22 psa 2140 Dec 2 2005 summary.gz
anyone knows how can i know the time it was last modified? (7 Replies)
Hi!
I would launch this command:
tar -cvvf logswitch.tar `find *.log* -mtime +5` --remove-files
only if
find *.log* -mtime +5
find some files.
Thanks in advance. (10 Replies)
Hi gurus,
I need a grep to locate files created on the date Mar 13th contaiming the text 5791075822 in it.
can you please suggest some good greps for this.
I am currently using ---> find . -mtime 0 | xargs grep '5791075822' , but this does not work as expected.
thanks in advance (7 Replies)
Guys,
I had raised a question about deleting files older than today in a specific directory and i got this as an answer
find ${ARCH_DEST}/*.gz -mtime +0 -exec rm -f {} \;
What happens when there aren't files that meet this criteria ? Can it delete any other directories ? I had a shocking... (22 Replies)
I have a folder that I need to search for new files and copy on the latest. I've been using "-mtime -1" in my command line but it doesn't seem to work.
I've been meaning to fine a different script because files are dropped into the folder all day long and because of the -mtime, I've only be... (19 Replies)
hi gurus,
i would like to know how can i find logs files which were recently modified or updated? :confused:
using this command?
find . -name "*.log" -mtime ??
so what should i put for mtime?
thanks.
wee (9 Replies)
Hello,
I'm trying to generate a TAR command and fill it with the result of a Find command. What I did is not elegant and I'm sure that it can be in a different way to be faster.
I need to Find all files with an extension to ".sf". If a file is found, I need to replace the extension ".sf" to... (11 Replies)
Is there a way that we can add the equivalent of "mtime +3" to HP-UX OS?
AIX has mtime that can filter older than how many days, but it is hard to put it for HP-UX.
I am trying to filter out the output with older than 3 days. Thank you so much!!
lpstat -o |grep -v bytes |sort -nkb1 | ??... (8 Replies)