web-dev-qa-db-ja.com

Windowsでファイルの複数の番号付きコピーを作成するにはどうすればよいですか?

Poll001.htmlという名前のファイルがあり、増分で名前が付けられた100個のコピーを作成する必要があります(poll002.html、poll003.html ...など)。私はこれが愚かであることを知っていますが、それはボスマンが望んでいることです。スクリプト、コマンドライン、またはpythonのいずれかでこれに対する提案はありますか?繰り返しますが、これはばかげた要求です。

6
tomwolber

バッチフ。 「source-file.html」をソースファイル名に置き換えます。これも先行ゼロを実行します。これを.BATまたは.CMDとして保存して、リッピングします。

@echo off

for /L %%i IN (1,1,100) do call :docopy %%i
goto :EOF

:docopy
set FN=00%1
set FN=%FN:~-3%

copy source-file.html poll%FN%.html

編集:

Sysadmin1138の答えの精神で一般的ではないケースを解決するには:

@echo off
for /L %%i IN (1,1,9) do copy source-file.html poll00%%i.html
for /L %%i IN (10,1,99) do copy source-file.html poll0%%i.html
copy source-file.html poll100.html
9
Evan Anderson

次のpowershellワンライナーでうまくいくはずです。

2..100 | %{cp poll001.html ("poll{0:D3}.html" -f $_)}
5
user49719

バッチファイルはそれを行うべきです。私の頭の上から:

for /L %%N in (1,1,100) do echo <html></html> > poll%%N.html

先行ゼロを取得するのは少し厄介ですが、これはそこに到達するはずです。これらのゼロが必要な場合は、

for /L %%N in (1,1,9) do echo <html></html> > poll00%%N.html
for /L %%N in (10,1,99) do echo <html></html> > poll0%%N.html
echo <html></html> > poll100.html

バッチファイル内で使用する場合は、Nの前の2パーセントが必要です。これをコマンドプロンプトから直接実行している場合は、単一のパーセント(%N)を使用します。

1
sysadmin1138

fileboss を試してください。

0
Chopper3

これは非常に高速な(lessTested)バージョンのC#コードです。
あなたはPythonについて言及しましたが、これは残念ながらそれほどではありません。Pythonに変換してみることができます。または、誰かがこれをPowerShellで実行する方法を説明できる場合。

using System;
using System.IO;

namespace TestnaKonzola
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Enter The First file name:");
            string firstFile = Path.Combine(Environment.CurrentDirectory, Console.ReadLine());
            Console.WriteLine("Enter the number of copyes:");
            int noOfCopy = int.Parse(Console.ReadLine());
            string newFile = string.Empty;
            for (int i = 0; i < noOfCopy; i++)
            {
                newFile = NextAvailableFilename(firstFile);
                Console.WriteLine(newFile);
                File.Copy(firstFile, newFile);   
            }
            Console.ReadLine();



        }
        public static string NextAvailableFilename(string path)
        {
            // Short-cut if already available
            if (!File.Exists(path))
                return path;

            // If path has extension then insert the number pattern just before the extension and return next filename
            if (Path.HasExtension(path))
                return GetNextFilename(path.Insert(path.LastIndexOf(Path.GetExtension(path)), numberPattern));

            // Otherwise just append the pattern to the path and return next filename
            return GetNextFilename(path + numberPattern);
        }
        private static string numberPattern = "{000}";
        private static string GetNextFilename(string pattern)
        {
            string tmp = string.Format(pattern, 1);
            if (tmp == pattern)
                throw new ArgumentException("The pattern must include an index place-holder", "pattern");

            if (!File.Exists(tmp))
                return tmp; // short-circuit if no matches

            int min = 1, max = 2; // min is inclusive, max is exclusive/untested

            while (File.Exists(string.Format(pattern, max)))
            {
                min = max;
                max *= 2;
            }

            while (max != min + 1)
            {
                int pivot = (max + min) / 2;
                if (File.Exists(string.Format(pattern, pivot)))
                    min = pivot;
                else
                    max = pivot;
            }

            return string.Format(pattern, max);
        }
    }
}
0
adopilot