VirtualBox

Changeset 47834 in vbox for trunk/include/iprt


Ignore:
Timestamp:
Aug 19, 2013 9:03:37 AM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
88104
Message:

IPRT/file.h: Documentation.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/file.h

    r47783 r47834  
    619619 *
    620620 * Access modes:
    621  *      "r"  - Read
    622  *      "r+" - Read / Write
    623  *      "w"  - Write
    624  *      "w+" - Write / Read
     621 *      "r"  - Opens a file for reading.
     622 *      "r+" - Opens a file for reading and writing.
     623 *      "w"  - Opens a file for writing.
     624 *      "w+" - Opens a file for writing and reading.
    625625 *
    626626 * Disposition modes:
    627  *      "ca" - Create a new file, always, overwrite existing
    628  *      "ce" - Create a new file if not exist, fail if exist
    629  *      "oc" - Open existing, create if not exist
    630  *      "oe" - Open existing, fail if not exist
    631  *      "ot" - Open and truncate existing, fail of not exist
     627 *      "ca" - Creates a new file, always. Overwrites an existing file.
     628 *      "ce" - Creates a new file if it does not exist. Fail if exist.
     629 *      "oc" - Opens and existing file or create it if it does not exist.
     630 *      "oe" - Opens an existing file or fail if it does not exist.
     631 *      "ot" - Opens and truncate an existing file or fail if it does not exist.
    632632 *
    633633 * Sharing modes:
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette