Windows PowershellサポートTOPへ

Windows Powershellによるファイルを移動する方法を紹介

ファイルを移動

サンプルソース


1つのファイルを移動


(入力)

move-item -path f:\folder\test.txt -destination f:\test


(出力)

なし


サンプルソース


フォルダ内の全てのファイル・フォルダを移動する方法


(入力)

move-item -path f:\folder\* -destination f:\test


(出力)

なし


サンプルソース


フォルダ内の特定の拡張子のファイルを移動


(入力)

move-item -path f:\folder\*.txt -destination f:\test


(出力)

なし



  

戻る




Copyright (C) Windows Powershellサポート by wannko All Rights Reserved.
お問合せ先 ⇒ nachiko★wannko.net(★を@に変更して下さい。)