1

是否可以检测文件(例如在预览中打开的 pdf 文件)是否已关闭?

FSEvents API不会触发这样的事件。

也许我可以观察相关的过程或类似的东西?!

4

1 回答 1

1

是的,您可以通过某种方式确定文件是否已关闭。所以在下面我尝试使用 unix lsof -t yourFilePath 命令来确定相同的,因此在可可中实现了相同的。请按照下面的操作 lsof -t yourFilePath 将为您提供仅打开文件的进程 ID。这样您就可以轻松检测哪些文件已关闭:-

NSTask *task;
task = [[NSTask alloc] init];
[task setLaunchPath: @"/bin/bash"];
NSString *yourFilePath=@"/Users/Home/Desktop/test.doc";
[task setArguments:[NSArray arrayWithObjects: @"-c",[NSString stringWithFormat:@"%@ %@ %@",@"lsof",@"-t",yourFilePath],nil]];
NSPipe *pipe;
pipe = [NSPipe pipe];
[task setStandardOutput: pipe];

NSFileHandle *file;
file = [pipe fileHandleForReading];

[task launch];

NSData *data;
data = [file readDataToEndOfFile];
NSString *response = [[NSString alloc] initWithData: data encoding: NSUTF8StringEncoding];
if ([response length] > 0)
{
NSLog(@"test.doc file has been opened and process id is %@",response);
}
else
{
NSLog(@"test.doc file has been closed");
}
于 2013-10-04T13:18:02.037 回答