InfinityQuest - Programming Code Tutorials and Examples with Python, C++, Java, PHP, C#, JavaScript, Swift and more

Menu
  • Home
  • Sitemap

Python Programming Language Best Tutorials and Code Examples

Learn Python Right Now!
Home
Bash
Getting Information About Files in PHP
Bash

Getting Information About Files in PHP

InfinityCoder January 11, 2017

You need more information about a file, such as what it is, who owns it, if it’s executable, how many hard links it has, or when it was last accessed or changed.

Use the ls, stat, file, or find commands.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
$ touch /tmp/sample_file
 
$ ls /tmp/sample_file
/tmp/sample_file
 
$ ls -l /tmp/sample_file
-rw-r--r-- 1 jp jp                       0 Dec 18 15:03 /tmp/sample_file
 
$ stat /tmp/sample_file
File: "/tmp/sample_file"
Size: 0      Blocks: 0                  IO Block: 4096 Regular File
Device: 303h/771d Inode: 2310201      Links: 1
Access: (0644/-rw-r--r--) Uid> :( 501/       jp) Gid: ( 501/ jp)
Access: Sun Dec 18 15:03:35 2005
Modify: Sun Dec 18 15:03:35 2005
Change: Sun Dec 18 15:03:42 2005
 
$ file /tmp/sample_file
/tmp/sample_file: empty
 
$ file -b /tmp/sample_file
empty
 
$ echo '#!/bin/bash -' > /tmp/sample_file
 
$ file /tmp/sample_file
/tmp/sample_file: Bourne-Again shell script text executable
 
$ file -b /tmp/sample_file
Bourne-Again shell script text executable

For much more on the find command, see all of Chapter 9.

The command ls shows only filenames, while ls -l provides more details about each file. ls has many options; consult the manpage on your system for the ones it supports. Useful options include:
-a
Do not hide files starting with . (dot)
-F
Show the type of file with one of these trailing type designators: /*@%=|
-l
Long listing
-L
Show information about the linked file, rather than the symbolic link itself
-Q
Quote names (GNU extension, not supported on all systems)
-r
Reverse sort order
-R
Recurse though subdirectories
-S
Sort by file size
-1
Short format but only one file per line
When using -F a slash (/) indicates a directory, an asterisk (*) means the file is executable, an at sign (@) indicates a symbolic link, a percent sign (%) shows a whiteout, an equal sign (=) is a socket, and a pipe or vertical bar (|) is a FIFO.
stat, file, and find all have many options that control the output format; see the manpages on your system for supported options.

For example, these options produce output that is similar to ls -l:

1
2
3
4
5
6
7
8
$ ls -l /tmp/sample_file
-rw-r--r-- 1 jp jp                             14 Dec 18 15:04 /tmp/sample_file
 
$ stat -c'%A %h %U %G %s %y %n' /tmp/sample_file
-rw-r--r-- 1 jp jp 14 Sun Dec 18 15:04:12 2005 /tmp/sample_file
 
$ find /tmp/ -name sample_file -printf '%m %n %u %g %t %p'
644 1 jp jp Sun Dec 18 15:04:12 2005 /tmp/sample_file

Not all operating systems and versions have all of these tools. For example, Solaris does not include stat by default.

It is also worth pointing out that directories are nothing more than files that the operating system knows to treat specially.

So the commands above work just fine on directories, though sometimes you may need to modify a command to get the behavior you expect.

For example, using ls -d to list information about the directory, rather than just ls (listing the contents of the directory).

Share
Tweet
Email
Prev Article
Next Article

Related Articles

Writing Output with More Formatting Control in bash
You want more control over the formatting and placement of …

Writing Output with More Formatting Control in bash

Taking It One Character at a Time in bash
You have some parsing to do and for whatever reason …

Taking It One Character at a Time in bash

About The Author

InfinityCoder
InfinityCoder

Leave a Reply

Cancel reply

Recent Tutorials InfinityQuest

  • Adding New Features to bash Using Loadable Built-ins in bash
    Adding New Features to bash Using Loadable …
    June 27, 2017 0
  • Getting to the Bottom of Things in bash
    Getting to the Bottom of Things in …
    June 27, 2017 0

Recent Comments

  • fer on Turning a Dictionary into XML in Python
  • mahesh on Turning a Dictionary into XML in Python

Categories

  • Bash
  • PHP
  • Python
  • Uncategorized

InfinityQuest - Programming Code Tutorials and Examples with Python, C++, Java, PHP, C#, JavaScript, Swift and more

About Us

Start learning your desired programming language with InfinityQuest.com.

On our website you can access any tutorial that you want with video and code examples.

We are very happy and honored that InfinityQuest.com has been listed as a recommended learning website for students.

Popular Tags

binary data python CIDR convert string into datetime python create xml from dict python dictionary into xml python how to create xml with dict in Python how to write binary data in Python IP Address read binary data python tutorial string as date object python string to datetime python

Archives

  • June 2017
  • April 2017
  • February 2017
  • January 2017
  • December 2016
  • November 2016
Copyright © 2021 InfinityQuest - Programming Code Tutorials and Examples with Python, C++, Java, PHP, C#, JavaScript, Swift and more
Programming Tutorials | Sitemap