Dictionary    Maps    Thesaurus    Translate    Advanced >   


Tip: Click a synonym from the results below to see its synonyms.

1. Moby Thesaurus II by Grady Ward, 1.0
Ditto copy, Photostat, Xerox, Xerox copy, clone, contact print, copy, ditto, double, dupe, duplicate, enlargement, facsimile, hectograph, hectograph copy, impress, impression, manifold, microcopy, microfilm, mimeo, mimeograph, mimeograph copy, multigraph, negative, offprint, photocopy, photograph, photostatic copy, positive, print, proof, quadruplicate, reduplicate, reproduce, trace, transcribe, triplicate
Dictionary Results for stat:
1. The Free On-line Dictionary of Computing (30 December 2018)
stat

    The Unix system call to
   get the properties of a file or directory.

   stat is called like this:

    struct stat s;
    if (stat("/path/to/file", &s))  /* handle error */ 

   This will fill the struct with the following data: id of
   device containing file, inode number, permissions (mode),
   number of hard links, user id of owner, group id of
   owner, device id (if special file), total size in bytes,
   block size for file system I/O, number of 512B blocks
   allocated, time of last access, time of last modification,
   time of last status change.

   If stat is called on a symbolic link, it returns the
   properties of the link's target.  Variant lstat returns the
   properties of the link itself.

   Variant fstat takes a file descriptor instead of a path.

   Unix man page: stat(2).

   (2018-09-04)


Common Misspellings >
Most Popular Searches: Define Misanthrope, Define Pulchritudinous, Define Happy, Define Veracity, Define Cornucopia, Define Almuerzo, Define Atresic, Define URL, Definitions Of Words, Definition Of Get Up, Definition Of Quid Pro Quo, Definition Of Irreconcilable Differences, Definition Of Word, Synonyms of Repetitive, Synonym Dictionary, Synonym Antonyms. See our main index and map index for more details.

©2011-2024 ZebraWords.com - Define Yourself - The Search for Meanings and Meaning Means I Mean. All content subject to terms and conditions as set out here. Contact Us, peruse our Privacy Policy