1

私はiPhoneアプリケーションで作業しています.DropboxからファイルをダウンロードしてiPhoneデバイス"/Users/govindarajk/Library/Application Support/iPhone Simulator/5.1/Applications/343cc44-024DF2-34qs34-4433243-csafsa42232/Documents/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 メニューの [強制終了] オプションから Finder を再起動します。

隠しファイルをオンに戻したい場合、コマンドは次のとおりです。

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