Использование PowerShell для добавления расширения к файлам - PullRequest
14 голосов
/ 31 октября 2008

У меня есть каталог файлов, к которому я хотел бы добавить расширение файла, если у них нет существующего указанного расширения. Поэтому добавьте .txt ко всем именам файлов, которые не заканчиваются на .xyz. PowerShell кажется хорошим кандидатом для этого, но я ничего не знаю об этом. Как бы я пошел по этому поводу?

Ответы [ 4 ]

22 голосов
/ 31 октября 2008

Вот способ Powershell:

gci -ex "*.xyz" | ?{!$_.PsIsContainer} | ren -new {$_.name + ".txt"}

Или сделать его более многословным и более легким для понимания:

Get-ChildItem -exclude "*.xyz" 
    | WHere-Object{!$_.PsIsContainer} 
    | Rename-Item -newname {$_.name + ".txt"}

РЕДАКТИРОВАТЬ: Конечно, нет ничего плохого и в DOS. :)

EDIT2: Powershell поддерживает неявное (и явное в этом отношении) продолжение строки, и, как показано в посте Мэтта Гамильтона, оно облегчает чтение.

16 голосов
/ 31 октября 2008

+ 1 для EBGreen, за исключением того, что (по крайней мере, в XP) параметр -exclude для get-childitem, похоже, не работает. Текст справки (gci -?) На самом деле говорит: «Этот параметр не работает должным образом в этом командлете»!

Таким образом, вы можете отфильтровать вручную следующим образом:

gci 
  | ?{ !$_.PSIsContainer -and !$_.Name.EndsWith(".xyz") } 
  | %{ ren -new ($_.Name + ".txt") }
3 голосов
/ 31 октября 2008

Рассмотрим команду DOS FOR в стандартной оболочке.

C:\Documents and Settings\Kenny>help for
Runs a specified command for each file in a set of files.

FOR %variable IN (set) DO command [command-parameters]

  %variable  Specifies a single letter replaceable parameter.
  (set)      Specifies a set of one or more files.  Wildcards may be used.
  command    Specifies the command to carry out for each file.
  command-parameters
             Specifies parameters or switches for the specified command.

...

In addition, substitution of FOR variable references has been enhanced.
You can now use the following optional syntax:

    %~I         - expands %I removing any surrounding quotes (")
    %~fI        - expands %I to a fully qualified path name
    %~dI        - expands %I to a drive letter only
    %~pI        - expands %I to a path only
    %~nI        - expands %I to a file name only
    %~xI        - expands %I to a file extension only
    %~sI        - expanded path contains short names only
    %~aI        - expands %I to file attributes of file
    %~tI        - expands %I to date/time of file
    %~zI        - expands %I to size of file
    %~$PATH:I   - searches the directories listed in the PATH
                   environment variable and expands %I to the
                   fully qualified name of the first one found.
                   If the environment variable name is not
                   defined or the file is not found by the
                   search, then this modifier expands to the
                   empty string
2 голосов
/ 17 мая 2015

Это полезно при использовании PowerShell v4.

Get-ChildItem -Path "C:\temp" -Filter "*.config" -File | 
    Rename-Item -NewName { $PSItem.Name + ".disabled" }
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...