Ошибка в ходе выполнения Directory.Move
Что с ошибкой делать?
P.S. очень интересует вопрос. На с++ можно было создать пустой проект так, чтобы вся прога работала без интерфейса. Достаточно было создать «пустой проект» и всё писать на win api. Как можно создать прогу без интерфейса на C#?
Добавлено через 50 секунд
ах да.. совсем забыл. В MSDN не нашёл метода Copy, только Move
How can I resize a picture when I move a move a mouse on it, and size it back when I move mouse out?
How can I resize a picture when I move a move a mouse on it, and size it back when I move mouse.
Изменение свойств компонентов в ходе выполнения программы
Здравствуйте! Проблема в следующем. Есть собственный WPF-контрол. В нем свойство Property1 и.
Directory.Move() выбивает исключение, подскажите что не так
Функция по перемещению директории выбивает ошибку, подскажите- что не так? static void.
Задание имени переменной в ходе выполнения программы
Вопрос в следующем. Можно ли задавать имена переменным, созданным в ходе выполнения программы? .
вот это у меня не работает:
strDirectory.Replace(driveName, «C:\\» + VolumeLabel);//НЕ РАБОТАЕТ.
в смысле ничего не меняет.
Добавлено через 1 минуту
дальше код отлаживать не получилось.
Mikant, я правильно делаю рекурсию? Просто так получилось что я сейчас в первый раз ее использую.
и ещё вопрос. Как на C# сделать так чтобы если пользователь вставил флэшку, сработал конкретный код? Я понимаю что хуки надо использовать, но можно поконкретней? и надо отдельно dll делать чтобы работа шла в глобальном режиме?
Добавлено через 1 час 0 минут
надо использовать хук WH_HARDWARE?
How can I move all the files from one folder to another using the command line?
What is the best command to move all files from one folder to another?
I want to do this from within a batch file.
9 Answers 9
You can use move for this. The documentation from help move states:
See the following transcript for an example where it initially shows the qq1 and qq2 directories as having three and no files respectively. Then, we do the move and we find that the three files have been moved from qq1 to qq2 as expected.
will work, but you will end up with a structure like this:
If you want to move just the contents of one folder to another, then this should do it:
This command will move all the files in originalfolder to destinationfolder.
(However it wont move any sub-folders to the new location.)
To lookup the instructions for the MOVE command type this in a windows command prompt:
Lookup move /? on Windows and man mv on Unix systems
You can use the command move
robocopy seems to be the most versatile. See it’s other options in the help
use move then move
Be sure to use quotes if there are spaces in the file path:
That will move the contents of C:\Users\MyName\My Old Folder\ to C:\Users\MyName\My New Folder
OMG I Got A Quick File Move Command form CMD
1)Command will move All Files and Sub Folders into another location in 1 second .
Hint : For move all Files and Sub folders
check image
you can see that it’s before i try some other code that was not working due to more than 1 files and folder was there. when i try to execute code that is under line by red color then all folder move in 1 second.
now check this image. here Total 6.7GB data moved in 1 second. you can check date of post and move as well as Folder name.
i will soon make a windows app that will do same..
Directory Класс
Определение
Предоставляет статические методы для создания, перемещения и перечисления в каталогах и вложенных каталогах. Exposes static methods for creating, moving, and enumerating through directories and subdirectories. Этот класс не наследуется. This class cannot be inherited.
Примеры
В следующем примере показано, как извлечь все текстовые файлы из каталога и переместить их в новый каталог. The following example shows how to retrieve all the text files from a directory and move them to a new directory. После перемещения файлы больше не существуют в исходном каталоге. After the files are moved, they no longer exist in the original directory.
В следующем примере показано, как использовать EnumerateFiles метод для получения коллекции текстовых файлов из каталога, а затем использовать эту коллекцию в запросе для поиска всех строк, содержащих «example». The following example demonstrates how to use the EnumerateFiles method to retrieve a collection of text files from a directory, and then use that collection in a query to find all the lines that contain «Example».
В следующем примере показано, как переместить каталог и все его файлы в новый каталог. The following example demonstrates how to move a directory and all its files to a new directory. Исходный каталог больше не существует после перемещения. The original directory no longer exists after it has been moved.
Комментарии
Используйте Directory класс для стандартных операций, таких как копирование, перемещение, переименование, создание и удаление каталогов. Use the Directory class for typical operations such as copying, moving, renaming, creating, and deleting directories.
Чтобы создать каталог, используйте один из CreateDirectory методов. To create a directory, use one of the CreateDirectory methods.
Чтобы удалить каталог, используйте один из Delete методов. To delete a directory, use one of the Delete methods.
Чтобы получить или задать текущий каталог для приложения, используйте GetCurrentDirectory SetCurrentDirectory метод или. To get or set the current directory for an app, use the GetCurrentDirectory or SetCurrentDirectory method.
Для управления DateTime сведениями, связанными с созданием, доступом и записью каталога, используйте такие методы, как SetLastAccessTime и SetCreationTime . To manipulate DateTime information related to the creation, access, and writing of a directory, use methods such as SetLastAccessTime and SetCreationTime.
Статические методы Directory класса выполняют проверку безопасности всех методов. The static methods of the Directory class perform security checks on all methods. Если вы собираетесь повторно использовать объект несколько раз, рассмотрите возможность использования соответствующего метода экземпляра DirectoryInfo , так как проверка безопасности не всегда будет требоваться. If you are going to reuse an object several times, consider using the corresponding instance method of DirectoryInfo instead, because the security check will not always be necessary.
Если вы выполняете только одно действие, связанное с каталогом, более эффективно использовать статический Directory метод вместо соответствующего DirectoryInfo метода экземпляра. If you are performing only one directory-related action, it might be more efficient to use a static Directory method rather than a corresponding DirectoryInfo instance method. DirectoryДля большинства методов требуется путь к каталогу, к которому осуществляется управление. Most Directory methods require the path to the directory that you are manipulating.
В членах, принимающих строковый path параметр, этот путь должен иметь правильный формат или возникнет исключение. In members that accept a string path parameter, that path must be well-formed or an exception is raised. Например, если путь является полным, но начинается с пробела («c:\temp»), строка пути не усекается, поэтому путь считается некорректным и возникает исключение. For example, if a path is fully qualified but begins with a space (» c:\temp»), the path string isn’t trimmed, so the path is considered malformed and an exception is raised. Кроме того, путь или сочетание путей не могут быть полностью определены дважды. In addition, a path or a combination of paths cannot be fully qualified twice. Например, «c:\temp c:\Windows» также вызывает исключение. For example, «c:\temp c:\windows» also raises an exception. При использовании методов, принимающих строку пути, убедитесь, что пути имеют правильный формат. Ensure that your paths are well-formed when using methods that accept a path string. Дополнительные сведения см. в разделе Path. For more information see Path.
В членах, принимающих путь, путь может ссылаться на файл или каталог. In members that accept a path, the path can refer to a file or a directory. Можно использовать полный путь, относительный путь или путь в формате UNC для имени сервера и общего ресурса. You can use a full path, a relative path, or a Universal Naming Convention (UNC) path for a server and share name. Например, все следующие допустимые пути: For example, all the following are acceptable paths:
«c: \ \мидир» в C# или «к:\мидир» в Visual Basic. «c:\\MyDir» in C#, or «c:\MyDir» in Visual Basic.
«MyDir \ \мисубдир» в C# или «мидир\мисубдир» в Visual Basic. «MyDir\\MySubdir» in C#, or «MyDir\MySubDir» in Visual Basic.
» \ \ \ \Мисервер \ \мишаре» в C# или » \ \MyServer\MyShare» в Visual Basic. «\\\\MyServer\\MyShare» in C#, or «\\MyServer\MyShare» in Visual Basic.
По умолчанию всем пользователям предоставляется полный доступ на чтение и запись к новым каталогам. By default, full read/write access to new directories is granted to all users. Однако приложение должно иметь правильную защиту для доступа к существующим каталогам. However, the app must have the correct security to access existing directories.
Чтобы запросить разрешения для каталога и всех его подкаталогов, Завершите строку пути с помощью символа разделителя каталога. To demand permissions for a directory and all its subdirectories, end the path string with the directory separator character. (Например, «C:\Temp \ » предоставляет доступ к C:\Temp\ и всем его подкаталогам.) Чтобы запросить разрешения только для определенного каталога, Завершите строку пути точкой. (For example, «C:\Temp\» grants access to C:\Temp\ and all its subdirectories.) To demand permissions only for a specific directory, end the path string with a period. (Например, «C:\Temp \ ». (For example, «C:\Temp\.» предоставляет доступ только к C:\Temp \ , а не к его подкаталогам.) grants access only to C:\Temp\, not to its subdirectories.)
В членах, принимающих searchPattern параметр, строка поиска может быть любым сочетанием литеральных символов и двумя подстановочными знаками, * и?. In members that accept a searchPattern parameter, the search string can be any combination of literal characters and two wildcard characters; * and ?. Этот параметр не распознает регулярные выражения. This parameter does not recognize regular expressions. Дополнительные сведения см. в описании EnumerateDirectories(String, String) метода или любого другого метода, использующего searchPattern параметр. For more information, see the EnumerateDirectories(String, String) method or any other method that uses the searchPattern parameter.
Список общих задач ввода-вывода см. в разделе Общие задачи ввода-вывода. For a list of common I/O tasks, see Common I/O Tasks.
Directory и DirectoryInfo не поддерживаются для использования в приложениях для Магазина Windows. Directory and DirectoryInfo are not supported for use in Windows Store apps. Сведения о том, как получить доступ к файлам и папкам в приложениях для Магазина Windows, см. в разделе доступ к данным и файлам (приложения для Магазина Windows). For information about how to access files and folders in Windows Store apps, see Accessing data and files (Windows Store apps).
Методы
Создает все каталоги и подкаталоги по указанному пути, если они еще не существуют. Creates all directories and subdirectories in the specified path unless they already exist.
Создает все каталоги по указанному пути, если они еще не существуют, с применением заданных параметров безопасности Windows. Creates all the directories in the specified path, unless they already exist, applying the specified Windows security.
Удаляет пустой каталог по заданному пути. Deletes an empty directory from a specified path.
Удаляет заданный каталог и, при наличии соответствующей инструкции, все подкаталоги и файлы в нем. Deletes the specified directory and, if indicated, any subdirectories and files in the directory.
Возвращает перечисляемую коллекцию полных имен каталогов, расположенных по указанному пути. Returns an enumerable collection of directory full names in a specified path.
Возвращает перечисляемую коллекцию полных имен каталогов, соответствующих шаблону поиска по указанному пути. Returns an enumerable collection of directory full names that match a search pattern in a specified path.
Возвращает перечисляемую коллекцию полных имен каталогов, соответствующих шаблону поиска по указанному пути. Возможно, поиск ведется также и в подкаталогах. Returns an enumerable collection of the directory full names that match a search pattern in a specified path, and optionally searches subdirectories.
Возвращает перечисляемую коллекцию полных имен каталогов, соответствующих шаблону поиска по указанному пути. Возможно, поиск ведется также и в подкаталогах. Returns an enumerable collection of directory full names that match a search pattern in a specified path, and optionally searches subdirectories.
Возвращает перечисляемую коллекцию полных имен файлов, расположенных по указанному пути. Returns an enumerable collection of full file names in a specified path.
Возвращает перечисляемую коллекцию полных имен файлов, соответствующих шаблону поиска по указанному пути. Returns an enumerable collection of full file names that match a search pattern in a specified path.
Возвращает перечисляемую коллекцию полных имен файлов, соответствующих шаблону поиска и параметрам перечисления по указанному пути. Возможно, поиск ведется также и в подкаталогах. Returns an enumerable collection of full file names that match a search pattern and enumeration options in a specified path, and optionally searches subdirectories.
Возвращает перечисляемую коллекцию полных имен файлов, соответствующих шаблону поиска по указанному пути. Возможно, поиск ведется также и в подкаталогах. Returns an enumerable collection of full file names that match a search pattern in a specified path, and optionally searches subdirectories.
Возвращает перечисляемую коллекцию имен файлов и имен каталогов по указанному пути. Returns an enumerable collection of file names and directory names in a specified path.
Возвращает перечисляемую коллекцию имен файлов и имен каталогов по указанному пути, соответствующих шаблону поиска. Returns an enumerable collection of file names and directory names that match a search pattern in a specified path.
Возвращает перечисляемую коллекцию имен файлов и имен каталогов по указанному пути, соответствующих шаблону поиска и параметрам перечисления. Returns an enumerable collection of file names and directory names that match a search pattern and enumeration options in a specified path.
Возвращает перечисляемую коллекцию записей файловой системы, соответствующих шаблону поиска по указанному пути. Возможно, поиск ведется также и в подкаталогах. Returns an enumerable collection of file names and directory names that match a search pattern in a specified path, and optionally searches subdirectories.
Определяет, указывает ли заданный путь на существующий каталог на диске. Determines whether the given path refers to an existing directory on disk.
Получает объект DirectorySecurity, который инкапсулирует записи списка управления доступом (ACL) для заданного каталога. Gets a DirectorySecurity object that encapsulates the access control list (ACL) entries for a specified directory.
Получает объект DirectorySecurity, который инкапсулирует записи списка управления доступом (ACL) указанного типа для заданного каталога. Gets a DirectorySecurity object that encapsulates the specified type of access control list (ACL) entries for a specified directory.
Получает дату и время создания каталога. Gets the creation date and time of a directory.
Получает время и дату создания каталога в формате всемирного координированного времени (UTC). Gets the creation date and time, in Coordinated Universal Time (UTC) format, of a directory.
Получает текущий рабочий каталог приложения. Gets the current working directory of the application.
Возвращает имена подкаталогов (включая пути) в указанном каталоге. Returns the names of subdirectories (including their paths) in the specified directory.
Возвращает имена подкаталогов (включая пути) в указанном каталоге, соответствующих указанному шаблону поиска. Returns the names of subdirectories (including their paths) that match the specified search pattern in the specified directory.
Возвращает имена подкаталогов (включая пути) в указанном каталоге, соответствующих заданному шаблону поиска и параметрам перечисления. Returns the names of subdirectories (including their paths) that match the specified search pattern and enumeration options in the specified directory.
Возвращает имена подкаталогов (включая пути) в указанном каталоге, соответствующих указанному шаблону поиска, и при необходимости ведет поиск в подкаталогах. Returns the names of the subdirectories (including their paths) that match the specified search pattern in the specified directory, and optionally searches subdirectories.
Возвращает для заданного пути сведения о томе и корневом каталоге по отдельности или сразу. Returns the volume information, root information, or both for the specified path.
Возвращает имена файлов (с указанием пути к ним) в указанном каталоге. Returns the names of files (including their paths) in the specified directory.
Возвращает имена файлов (включая пути) из указанного каталога, отвечающие условиям заданного шаблона поиска. Returns the names of files (including their paths) that match the specified search pattern in the specified directory.
Возвращает имена файлов (включая пути) в указанном каталоге, соответствующих заданному шаблону поиска и параметрам перечисления. Returns the names of files (including their paths) that match the specified search pattern and enumeration options in the specified directory.
Возвращает имена файлов (включая пути) в заданном каталоге, отвечающие условиям шаблона поиска, используя значение, которое определяет, выполнять ли поиск в подкаталогах. Returns the names of files (including their paths) that match the specified search pattern in the specified directory, using a value to determine whether to search subdirectories.
Возвращает имена всех файлов и подкаталогов по указанному пути. Returns the names of all files and subdirectories in a specified path.
Возвращает массив имен файлов и имен каталогов по указанному пути, соответствующих шаблону поиска. Returns an array of file names and directory names that match a search pattern in a specified path.
Возвращает массив имен файлов и имен каталогов по указанному пути, соответствующих шаблону поиска и параметрам перечисления. Returns an array of file names and directory names that match a search pattern and enumeration options in a specified path.
Возвращает массив всех имен файлов и каталогов по указанному пути, соответствующих шаблону поиска, и при необходимости ведет поиск в подкаталогах. Returns an array of all the file names and directory names that match a search pattern in a specified path, and optionally searches subdirectories.
Возвращает время и дату последнего обращения к указанному файлу или каталогу. Returns the date and time the specified file or directory was last accessed.
Возвращает дату и время последнего доступа к заданному файлу или каталогу в формате всемирного координированного времени (UTC). Returns the date and time, in Coordinated Universal Time (UTC) format, that the specified file or directory was last accessed.
Возвращает время и дату последней операции записи в указанный файл или каталог. Returns the date and time the specified file or directory was last written to.
Возвращает дату и время последней операции записи в заданный файл или каталог в формате всемирного координированного времени (UTC). Returns the date and time, in Coordinated Universal Time (UTC) format, that the specified file or directory was last written to.
Извлекает имена логических дисков данного компьютера в формате » :\». Retrieves the names of the logical drives on this computer in the form » :\».
Извлекает родительский каталог, на который указывает абсолютный или относительный путь. Retrieves the parent directory of the specified path, including both absolute and relative paths.
Перемещает файл или каталог со всем его содержимым в новое местоположение. Moves a file or a directory and its contents to a new location.
Применяет к заданному каталогу записи списка управления доступом (ACL), описанные объектом DirectorySecurity. Applies access control list (ACL) entries described by a DirectorySecurity object to the specified directory.
Устанавливает дату и время создания заданного файла или каталога. Sets the creation date and time for the specified file or directory.
Устанавливает дату и время создания указанного файла или папки в формате всемирного координированного времени (UTC). Sets the creation date and time, in Coordinated Universal Time (UTC) format, for the specified file or directory.
Устанавливает заданный каталог в качестве текущего рабочего каталога приложения. Sets the application’s current working directory to the specified directory.
Устанавливает время и дату последнего обращения к заданному файлу или каталогу. Sets the date and time the specified file or directory was last accessed.
Устанавливает дату и время последнего доступа к заданному файлу или каталогу в формате всемирного координированного времени (UTC). Sets the date and time, in Coordinated Universal Time (UTC) format, that the specified file or directory was last accessed.
Устанавливает дату и время последней записи в файл или каталог. Sets the date and time a directory was last written to.
Устанавливает дату и время последней записи в заданный каталог в формате всемирного координированного времени (UTC). Sets the date and time, in Coordinated Universal Time (UTC) format, that a directory was last written to.