テキストファイルの名前をファイルの内容で変更するバッチファイルを作成する必要があります。例えば、単語alphaを含むflie1.txtはalpha.txtになります。私は、このバッチファイルを作成するために使用するコマンドのヒントを紹介します。txtファイルの名前を変更するバッチファイル
0
A
答えて
0
windows move
。 UNIX mv
例
のWindows:
move my_original_file_name.txt my_new_file_name.txt
のUnix:
mv my_original_file_name.txt my_new_file_name.txt
あなたの特定のタスクのWindowsでの:
SetLocal EnableDelayedExpansion
set your_file_location=%userprofile%
set your_file_name=!your_file_location!\file1.txt
for "eol=; tokens=1 delims=" %%n in ('type "!your_file_name!"') do (
set new_file_name=%%n
)
move "!your_file_name!" "!your_file_location!\!new_file_name!.txt"
1
これは、ファイルの最初の行またはワード使用しています:
set/p var=<file.txt ---Setting a variable to the content inside the file.
ren file.txt %var%.txt ---Renaming the file to eh assigned variable.
関連する問題
- 1. ファイルの名前を特定の名前に変更するバッチファイル
- 2. バッチファイルの名前変更
- 3. バッチファイルの名前を変更してtxtファイルを変更するときに問題が発生しました
- 4. ユーザーのファイルの名前を変更するためのバッチファイル
- 5. Windowsコマンド(バッチファイル)のファイル名の一部の名前を変更
- 6. バッチファイルを作成してファイルの名前を変更する
- 7. フォルダ内のファイルの名前を変更するバッチファイル
- 8. バッチファイルの名前を変更します。
- 9. バッチファイルでPDFファイルの名前を変更する
- 10. cmdバッチファイルの名前を変更するサブフォルダ/ファイル
- 11. ファイルの名前を変更して親フォルダの名前を付けるバッチファイル
- 12. ファイルを解凍して名前を変更するバッチファイル
- 13. Python 2.7でバッチファイルの名前を変更
- 14. バッチファイルの名前を変更R
- 15. バッチレンダリング用のWindowsバッチファイルの名前変更
- 16. 複数のディレクトリからファイル名の名前を変更するバッチファイル
- 17. バッチファイルのコピーと名前変更
- 18. バッチファイルを使用して日付を変更したファイルの名前を変更
- 19. バッチファイル:内容に基づいて複数のファイルの名前を変更する
- 20. 指定したディレクトリ内のファイルの名前を変更するバッチファイル
- 21. 特定の文字を削除するバッチファイルの名前変更
- 22. ファイル名をtxtファイルのURLリストにダウンロードして変更する
- 23. ファイルの名前を変更する
- 24. バッチファイルの名前の変更と移動と変数ともの
- 25. 名前を変更してファイルとディレクトリの名前を変更する
- 26. ランダムな名前のファイルの名前を変更するWindowsバッチスクリプト?
- 27. autoitで名前を変更するファイル
- 28. ファイル名のインクリメンタルな名前の変更
- 29. ファイル名にプレフィックスとしてカレントディレクトリを追加するフォルダとサブフォルダ内のバッチファイルの名前を変更
- 30. 名前でファイル名を変更
を...このUNIX、Windows版、Macますか? – Alexx
ウィンドウを使用していますか? – Steve
私はrenameコマンドを使って試しました – diegofercho21