Archived:How to handle file metadata in PySymbian
Archived: This article is archived because it is not considered relevant for third-party developers creating commercial solutions today. If you think this article is still relevant, let us know by adding the template {{ReviewForRemovalFromArchive|user=~~~~|write your reason here}}.
The article is believed to be still valid for the original topic scope.
The article is believed to be still valid for the original topic scope.
This snippet shows how to read file metadata in.
Article Metadata
Tested with
Devices(s): Nokia N95, Nokia E90
Compatibility
Platform(s): S60 1st Edition, S60 2nd Edition, S60 3rd Edition
Platform Security
Capabilities: )
Article
Keywords: os
Created: bogdan.galiceanu
(17 Apr 2008)
Last edited: hamishwillee
(08 May 2013)
Source code
import os, time
#Get the information for a file
statinfo = os.stat("C:\\Python\\ball.py")
#Display it
print "Size: " + str(statinfo.st_size)
print "Last modified: " + time.strftime("%a, %d %b %Y %H:%M:%S", time.localtime(statinfo.st_mtime))
print "Protection bits: " + str(statinfo.st_mode)
print "Inode number: " + str(statinfo.st_ino)
print "Device: " + str(statinfo.st_dev)
print "Number of hard links: " + str(statinfo.st_nlink)
print "User ID of owner: " + str(statinfo.st_uid)
print "Group ID of owner: " + str(statinfo.st_gid)
Postconditions
The information about the file is displayed.


28 Sep
2009