.mkvファイル(vlc.exe、mpc-hc.exeなど)を使用しているプロセスの名前を取得しようとしていますファイルがどのプロセスで使用されているかを知るには
私はすでにそれが使用されているかどうかを調べることができましたが、プロセスが正確にファイルを使用しているかどうかを知りたいのです。
私はこの投稿How do I find out which process is locking a file using .NET?からの提案を試みましたが、ファイルへのパスを差し込んで実行しても動作していないと、プロセスが表示されません(エラーなしでコードを実行できます)。
public static bool IsFileinUse(FileInfo file)
{
FileStream stream = null;
try
{
stream = file.Open(FileMode.Open, FileAccess.ReadWrite, FileShare.None);
}
catch (IOException)
{
//the file is unavailable because it is:
//still being written to
//or being processed by another thread
//or does not exist (has already been processed)
return true;
}
finally
{
if (stream != null)
stream.Close();
}
return false;
}
をhttp://stackoverflow.com/questions/958123/powershell-script-to-check-an-application- thats-locking-a-file –
http://stackoverflow.com/questions/317071/how-do-i-find-out-which-process-is-locking-a-file-using-net –
http:// stackoverflow.com/questions/860656/using-c-how-does-one-figure-out-what-process-locked-a-file –