en:code:data:file
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| en:code:data:file [2011/07/07 16:41] – [write] jmgr | en:code:data:file [2021/02/13 11:23] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 26: | Line 26: | ||
| </ | </ | ||
| <code javascript> | <code javascript> | ||
| - | File.copy(source, | + | File.copy(source, |
| </ | </ | ||
| Line 32: | Line 32: | ||
| - source - (string) the source file to copy | - source - (string) the source file to copy | ||
| - destination - (string) the destination file/ | - destination - (string) the destination file/ | ||
| - | - createDestinationDirectory - (boolean) should the destination directory be created if it doesn' | + | - options - (object) [//Added in Actionaz 3.0.1.//] |
| + | * noErrorDialog - (bool) should an error dialog be shown if an error occurs (Windows only, default: true) | ||
| + | * noConfirmDialog - (bool) should a confirmation dialog be shown if needed (Windows only, default: true) | ||
| + | * noProgressDialog - (bool) should a progress dialog be shown (Windows only, default: true) | ||
| + | * createDestinationDirectory - (bool) should the destination directory be created if it doesn' | ||
| === Returns === | === Returns === | ||
| Line 38: | Line 42: | ||
| === Exceptions === | === Exceptions === | ||
| - | * (DirectoryCreationError) unable to create the destination directory | + | |
| - | * (DirectoryDoesntExistError) the destination directory doesn' | + | |
| + | * (DirectoryDoesntExistError) the destination directory doesn' | ||
| * (CopyError) copy failed | * (CopyError) copy failed | ||
| + | * (CopyAbortedError) copy aborted (Windows only) | ||
| ==== move ==== | ==== move ==== | ||
| Line 50: | Line 56: | ||
| </ | </ | ||
| <code javascript> | <code javascript> | ||
| - | File.move(source, | + | File.move(source, |
| </ | </ | ||
| Line 56: | Line 62: | ||
| - source - (string) the source file to move | - source - (string) the source file to move | ||
| - destination - (string) the destination file/ | - destination - (string) the destination file/ | ||
| - | - createDestinationDirectory - (boolean) should the destination directory be created if it doesn' | + | - options - (object) [//Added in Actionaz 3.0.1.//] |
| + | * noErrorDialog - (bool) should an error dialog be shown if an error occurs (Windows only, default: true) | ||
| + | * noConfirmDialog - (bool) should a confirmation dialog be shown if needed (Windows only, default: true) | ||
| + | * noProgressDialog - (bool) should a progress dialog be shown (Windows only, default: true) | ||
| + | * createDestinationDirectory - (bool) should the destination directory be created if it doesn' | ||
| === Returns === | === Returns === | ||
| Line 62: | Line 72: | ||
| === Exceptions === | === Exceptions === | ||
| - | * (DirectoryCreationError) unable to create the destination directory | + | |
| - | * (DirectoryDoesntExistError) the destination directory doesn' | + | |
| - | * (MoveRenameError) move failed | + | * (DirectoryDoesntExistError) the destination directory doesn' |
| + | * (MoveError) move failed | ||
| + | * (MoveAbortedError) move aborted (Windows only) | ||
| ==== rename ==== | ==== rename ==== | ||
| - | This method | + | This function |
| ==== remove ==== | ==== remove ==== | ||
| Line 75: | Line 87: | ||
| <code javascript> | <code javascript> | ||
| File.remove(filename); | File.remove(filename); | ||
| + | </ | ||
| + | <code javascript> | ||
| + | File.remove(filename, | ||
| </ | </ | ||
| === Arguments === | === Arguments === | ||
| - filename - (string) the file to remove | - filename - (string) the file to remove | ||
| + | - options - (object) [//Added in Actionaz 3.0.1.//] | ||
| + | * noErrorDialog - (bool) should an error dialog be shown if an error occurs (Windows only, default: true) | ||
| + | * noConfirmDialog - (bool) should a confirmation dialog be shown if needed (Windows only, default: true) | ||
| + | * noProgressDialog - (bool) should a progress dialog be shown (Windows only, default: true) | ||
| + | * allowUndo - (bool) should the file/ | ||
| === Returns === | === Returns === | ||
| Line 84: | Line 104: | ||
| === Exceptions === | === Exceptions === | ||
| + | * (ParameterCountError) incorrect parameter count | ||
| * (RemoveError) remove failed | * (RemoveError) remove failed | ||
| + | * (RemoveAbortedError) remove aborted (Windows only) | ||
| ===== Methods ===== | ===== Methods ===== | ||
| Line 140: | Line 162: | ||
| === Arguments === | === Arguments === | ||
| - text - (string) the text to write | - text - (string) the text to write | ||
| - | - encoding - ([[code: | + | - encoding - ([[en:code: |
| === Returns === | === Returns === | ||
| Line 157: | Line 179: | ||
| === Returns === | === Returns === | ||
| - | * ([[code: | + | * ([[en:code: |
| ==== readText ==== | ==== readText ==== | ||
| Line 171: | Line 193: | ||
| === Arguments === | === Arguments === | ||
| - | - encoding - ([[code: | + | - encoding - ([[en:code: |
| === Returns === | === Returns === | ||
| Line 195: | Line 217: | ||
| </ | </ | ||
| <code javascript> | <code javascript> | ||
| - | myObject.copy(destination, | + | myObject.copy(destination, |
| </ | </ | ||
| === Arguments === | === Arguments === | ||
| - destination - (string) the location where to copy the file | - destination - (string) the location where to copy the file | ||
| - | - createDestinationDirectory - (boolean) should the destination directory be created if it doesn' | + | - options - (object) [//Added in Actionaz 3.0.1.//] |
| + | * noErrorDialog - (bool) should an error dialog be shown if an error occurs (Windows only, default: true) | ||
| + | * noConfirmDialog - (bool) should a confirmation dialog be shown if needed (Windows only, default: true) | ||
| + | * noProgressDialog - (bool) should a progress dialog be shown (Windows only, default: true) | ||
| + | * createDestinationDirectory - (bool) should the destination directory be created if it doesn' | ||
| === Returns === | === Returns === | ||
| Line 206: | Line 232: | ||
| === Exceptions === | === Exceptions === | ||
| - | * (DirectoryCreationError) unable to create the destination directory | + | |
| - | * (DirectoryDoesntExistError) the destination directory doesn' | + | |
| + | * (DirectoryDoesntExistError) the destination directory doesn' | ||
| * (CopyError) copy failed | * (CopyError) copy failed | ||
| + | * (CopyAbortedError) copy aborted (Windows only) | ||
| ==== move ==== | ==== move ==== | ||
| Line 218: | Line 246: | ||
| </ | </ | ||
| <code javascript> | <code javascript> | ||
| - | myObject.move(destination, | + | myObject.move(destination, |
| </ | </ | ||
| === Arguments === | === Arguments === | ||
| - destination - (string) the location where to move the file | - destination - (string) the location where to move the file | ||
| - | - createDestinationDirectory - (boolean) create | + | - options - (object) [//Added in Actionaz 3.0.1.//] |
| + | * noErrorDialog - (bool) should an error dialog be shown if an error occurs (Windows only, default: true) | ||
| + | * noConfirmDialog - (bool) should a confirmation dialog be shown if needed (Windows only, default: true) | ||
| + | * noProgressDialog - (bool) should a progress dialog be shown (Windows only, default: true) | ||
| + | * createDestinationDirectory - (bool) should | ||
| === Returns === | === Returns === | ||
| Line 229: | Line 261: | ||
| === Exceptions === | === Exceptions === | ||
| - | * (DirectoryCreationError) unable to create the destination directory | + | |
| - | * (DirectoryDoesntExistError) the destination directory doesn' | + | |
| - | * (MoveRenameError) move failed | + | * (DirectoryDoesntExistError) the destination directory doesn' |
| + | * (MoveError) move failed | ||
| + | * (MoveAbortedError) move aborted (Windows only) | ||
| ==== rename ==== | ==== rename ==== | ||
| - | This method is an alias of the [[#move|move]] method. | + | This method is an alias of the [[#move1|move]] method. |
| ==== remove ==== | ==== remove ==== | ||
| Line 243: | Line 277: | ||
| myObject.remove(); | myObject.remove(); | ||
| </ | </ | ||
| + | <code javascript> | ||
| + | myObject.remove(options); | ||
| + | </ | ||
| + | |||
| + | === Arguments === | ||
| + | - options - (object) [//Added in Actionaz 3.0.1.//] | ||
| + | * noErrorDialog - (bool) should an error dialog be shown if an error occurs (Windows only, default: true) | ||
| + | * noConfirmDialog - (bool) should a confirmation dialog be shown if needed (Windows only, default: true) | ||
| + | * noProgressDialog - (bool) should a progress dialog be shown (Windows only, default: true) | ||
| + | * allowUndo - (bool) should the file/ | ||
| === Returns === | === Returns === | ||
| Line 248: | Line 292: | ||
| === Exceptions === | === Exceptions === | ||
| + | * (ParameterCountError) incorrect parameter count | ||
| * (RemoveError) remove failed | * (RemoveError) remove failed | ||
| + | * (RemoveAbortedError) remove aborted (Windows only) | ||
| ===== Enumerations ===== | ===== Enumerations ===== | ||
en/code/data/file.1310056909.txt.gz · Last modified: (external edit)
