storage.management.commands package¶
Submodules¶
storage.management.commands.scale_delete_file module¶
Defines the command line method for deleting a file
-
class
storage.management.commands.scale_delete_file.
Command
(stdout=None, stderr=None, no_color=False)¶ Bases:
django.core.management.base.BaseCommand
Command that deletes a stored file from the remote file system.
-
add_arguments
(parser)¶
-
handle
(*args, **options)¶ See
django.core.management.base.BaseCommand.handle()
.This method starts the file delete process.
-
help
= u'Deletes a stored file from the remote file system'¶
-
storage.management.commands.scale_delete_files module¶
Defines the command line method for running a delete files task
-
class
storage.management.commands.scale_delete_files.
Command
(stdout=None, stderr=None, no_color=False)¶ Bases:
django.core.management.base.BaseCommand
Command that executes the delete file process for a given file
-
handle
(*args, **options)¶ See
django.core.management.base.BaseCommand.handle()
.This method starts the file destruction process.
-
help
= u'Perform a file destruction operation on a file'¶
-
storage.management.commands.scale_download_file module¶
Defines the command line method for downloading a file
-
class
storage.management.commands.scale_download_file.
Command
(stdout=None, stderr=None, no_color=False)¶ Bases:
django.core.management.base.BaseCommand
Command that downloads a stored file to the local file system.
-
add_arguments
(parser)¶
-
handle
(*args, **options)¶ See
django.core.management.base.BaseCommand.handle()
.This method starts the file download process.
-
help
= u'Downloads a stored file to the local file system'¶
-
storage.management.commands.scale_list_files module¶
Defines the command line method for listing files within a workspace
-
class
storage.management.commands.scale_list_files.
Command
(stdout=None, stderr=None, no_color=False)¶ Bases:
django.core.management.base.BaseCommand
Command for listing files within a workspace.
-
add_arguments
(parser)¶
-
handle
(*args, **options)¶ See
django.core.management.base.BaseCommand.handle()
.This method will list the entire contents of a workspace.
-
help
= u'Lists files within a workspace.'¶
-
storage.management.commands.scale_move_file module¶
Defines the command line method for moving a file
-
class
storage.management.commands.scale_move_file.
Command
(stdout=None, stderr=None, no_color=False)¶ Bases:
django.core.management.base.BaseCommand
Command that moves a stored file to a new remote path.
-
add_arguments
(parser)¶
-
handle
(*args, **options)¶ See
django.core.management.base.BaseCommand.handle()
.This method starts the file move process.
-
help
= u'Moves a stored file to a new remote path'¶
-
storage.management.commands.scale_move_files module¶
Defines the command line method for moving a file
-
class
storage.management.commands.scale_move_files.
Command
(stdout=None, stderr=None, no_color=False)¶ Bases:
django.core.management.base.BaseCommand
Command that moves a stored file to a new remote path.
-
handle
(*args, **options)¶ See
django.core.management.base.BaseCommand.handle()
.This method starts the file move process.
-
help
= u'Moves a stored file to a new remote path'¶
-
storage.management.commands.scale_upload_file module¶
Defines the command line method for uploading a file
-
class
storage.management.commands.scale_upload_file.
Command
(stdout=None, stderr=None, no_color=False)¶ Bases:
django.core.management.base.BaseCommand
Command that uploads a local file to the storage system.
-
add_arguments
(parser)¶
-
handle
(*args, **options)¶ See
django.core.management.base.BaseCommand.handle()
.This method starts the file upload process.
-
help
= u'Uploads a local file to the storage system'¶
-