added optional parameters (and this documentation)
recursive (boolean): should the plugin work for every subdirectory of
                     the from-directory (defaults to False)

  This parameter can be used to make a "safe delete function":
  map(lambda dir: plugin.activate('video.mover', args=(dir[1],
                                                       '/mnt/media/trash',
                                                       True)),
      DIR_MOVIES)


makedirs (boolean): should freevo create the to-dir if it doesn't
exist
                    (defaults to False)

  This parameter can be used to move seen tv-episodes/movies
  into a subdirectory ('seen'):

  map(lambda dir: plugin.activate('video.mover', args=(dir[1],
                                                       'seen',
                                                       True,
                                                       True)),
      DIR_MOVIES) 

  When to-dir is not specified as an absolute path, the mover will try
  to locate it in the current dir. If makedirs==True and to-dir
  doesn't exist, it will be created in the current-dir.

Attachment: patch-mover.tar.gz
Description: application/gunzip

-- 
Eirik Meland

A: Top posters.
Q: What is the most annoying thing on Usenet?

Reply via email to