OLD | NEW |
1 .. _devguide-coding-fileio: | 1 .. _devguide-coding-fileio: |
2 | 2 |
| 3 .. include:: /migration/deprecation.inc |
| 4 |
3 ######## | 5 ######## |
4 File I/O | 6 File I/O |
5 ######## | 7 ######## |
6 | 8 |
7 .. contents:: | 9 .. contents:: |
8 :local: | 10 :local: |
9 :backlinks: none | 11 :backlinks: none |
10 :depth: 2 | 12 :depth: 2 |
11 | 13 |
12 Introduction | 14 Introduction |
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
544 | 546 |
545 .. naclcode:: | 547 .. naclcode:: |
546 | 548 |
547 int32_t result = ref.MakeDirectory( | 549 int32_t result = ref.MakeDirectory( |
548 PP_MAKEDIRECTORYFLAG_NONE, pp::BlockUntilComplete()); | 550 PP_MAKEDIRECTORYFLAG_NONE, pp::BlockUntilComplete()); |
549 if (result != PP_OK) { | 551 if (result != PP_OK) { |
550 ShowErrorMessage("Make directory failed", result); | 552 ShowErrorMessage("Make directory failed", result); |
551 return; | 553 return; |
552 } | 554 } |
553 ShowStatusMessage("Make directory success"); | 555 ShowStatusMessage("Make directory success"); |
OLD | NEW |