1

我在 iPhone 应用程序中工作,我已经从 Dropbox 下载了一个文件来存储 iPhone 设备路径"/Users/govindarajk/Library/Application Support/iPhone Simulator/5.1/Applications/343cc44-024DF2-34qs34-4433243-csafsa42232/Documents/Example.txt",但我在我的 Mac 中检查了这个路径,路径文件没有显示它,如何找到这个路径和 Example.txt 文件?请帮我

提前致谢

我必须以这种方式存储文件:

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); 
    NSString *documentsDirectory = [paths objectAtIndex:0]; // Get documents directory
    NSString *filePath = [documentsDirectory stringByAppendingPathComponent:@"Example.txt"];
    NSError *error;

    [self.restClient loadFile:@"/example/Example.txt" intoPath:filePath];

    if (filePath) { // check if file exists - if so load it:
        NSString *tempTextOut = [NSString stringWithContentsOfFile:filePath
                                                          encoding:NSUTF8StringEncoding
                                                             error:&error];
    }

截图供您参考:

User/govindaraj/Library,此处未显示的库文件:

在此处输入图像描述

在此处输入图像描述

4

2 回答 2

1

Library目录是隐藏的,您可以通过以下操作进入该目录:按⇧ Shift+⌘</kbd>+G when in finder. Then a dialog will popup asking to open a directory, just type in ~/Library and it should open the library directory.

于 2012-09-11T14:37:01.243 回答
0

打开终端并输入以下内容

defaults write com.apple.Finder AppleShowAllFiles YES

然后从 Apple 菜单上的 Force Quit 选项重新启动 Finder。

如果要重新打开隐藏文件,命令是

defaults write com.apple.Finder AppleShowAllFiles NO
于 2012-09-11T18:07:25.167 回答