Jump to content
View in the app

A better way to browse. Learn more.

FMForums.com

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Moving Files / Creatiung Directories

Featured Replies

I can easily get a file listing from a directory, but then I would like to move all of those files to other directories. I may also need to create the new directories these files will be moved to.

I was surprised that these two functions (fileMove and directoryCreate) are not already a part of ScriptMaster.

So I thought I would take a crack at creating these myself. Looking at the Groovy Reference site, in the File category, I don't see these methods.

Am I missing something simple?

Thanks.

Hi Karstyn - you'll love learning Groovy/Java! Take a look at the class documentation for java.io.File:

http://java.sun.com/j2se/1.4.2/docs/api/java/io/File.html

in particular, you'll need to use the rename() method and the mkdir() or mkdirs() methods. If you get stuck, post your code and I'm sure somebody will be happy to help.

  • Author

Great - Thanks!

I was able to create a directoryCreate function easy enough. I am having problems with fileMove though.

This is what I'm starting with:

new File(origPath).renameTo(newPath)

where both parameters are fully qualified paths ending with the file name.

One question I have with paths - it seems that they always take forward slashes, correct? Regardless of platform?

  • Author

Seems to be a problem with my use of .renameTo() - I'm getting this error:

groovy.lang.MissingMethodException: No signature of method: java.lang.String.renameTo() is applicable for argument types: (java.lang.String) values: {"C:Documents and SettingskmccoyDesktopimagesMovedA0166433.jpg"}

This error indicates that you're trying to call rename() on a String, instead of a File. Try something like:

new File("/path/to/oldfile").renameTo( new File("/path/to/newfile") )

  • Author

That was it!

It's the simple things. I'm not at all familiar with java yet so just fumbling my way along. That helped a lot.

Thanks a million!

I was hoping to do something similar to this. Could anyone suggest the best way to copy a whole directory. Instead of moving it I need to copy a directory from one place to another.

Thanks.

Tanner, I started a new thread called 'Copying directories' with a response to your question.

Create an account or sign in to comment

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.