5

我正在编写一个 PowerPoint 加载项,该加载项对已转换为 WMV 的文件进行 FTP 传输。

我有以下代码可以正常工作:

oPres.CreateVideo(exportName);
oPres.SaveAs(String.Format(exportPath, exportName),PowerPoint.PpSaveAsFileType.ppSaveAsWMV,MsoTriState.msoCTrue);

但这会启动 PP 中的一个进程,该进程执行文件转换,并在文件完成写入之前立即转到下一行代码。

有没有办法检测这个文件何时完成写入,这样我就可以在知道文件已经完成的情况下运行下一行代码?

4

1 回答 1

12

当文件正在使用时,它不可用,因此您可以检查可用性并等待文件可用。一个例子:

    void AwaitFile()
    {
        //Your File
        var file  = new FileInfo("yourFile");

        //While File is not accesable because of writing process
        while (IsFileLocked(file)) { }

        //File is available here

    }

    /// <summary>
    /// Code by ChrisW -> http://stackoverflow.com/questions/876473/is-there-a-way-to-check-if-a-file-is-in-use
    /// </summary>
    protected virtual bool IsFileLocked(FileInfo file)
    {
        FileStream stream = null;

        try
        {
            stream = file.Open(FileMode.Open, FileAccess.ReadWrite, FileShare.None);
        }
        catch (IOException)
        {
            return true;
        }
        finally
        {
            if (stream != null)
                stream.Close();
        }

        //file is not locked
        return false;
    }
于 2013-07-12T11:11:24.723 回答