X-Git-Url: https://yaffs.net/gitweb/?a=blobdiff_plain;f=direct%2Fpython%2Fexamples.py;fp=direct%2Fpython%2Fexamples.py;h=68fc95c8306252902ccb0b65a616756fb264c7ab;hb=d7388fb75a13610d14d0afc397f826bd44c972e1;hp=155e770036410c190bc943d57c7e4e3ed3b596b5;hpb=8cbfc1e273db791447911631e80c0495c6171ca8;p=yaffs2.git diff --git a/direct/python/examples.py b/direct/python/examples.py index 155e770..68fc95c 100644 --- a/direct/python/examples.py +++ b/direct/python/examples.py @@ -30,12 +30,12 @@ def yaffs_ls(dname): isDir = True if st.st_mode & 0x4000 else False if isFile : - print "File ",se.d_ino, hex(perms), st.st_size, fullname + print "File ",se.d_ino, hex(perms), st.st_size, fullname, " times ", st.yst_atime, st.yst_ctime, st.yst_mtime elif isDir : - print "Dir ",se.d_ino, hex(perms), fullname + print "Dir ",se.d_ino, hex(perms), fullname, " times ", st.yst_atime, st.yst_ctime, st.yst_mtime yaffs_ls(fullname) else : - print "Other (",hex(st.st_mode),") ",se.d_ino, hex(perms), fullname + print "Other (",hex(st.st_mode),") ",se.d_ino, hex(perms), fullname, " times ", st.yst_atime, st.yst_ctime, st.yst_mtime sep = yaffs_readdir(dc) yaffs_closedir(dc) @@ -96,4 +96,3 @@ h = yaffs_open(root+"/dd/111",66,0666) yaffs_close(h) yaffs_ls(root) -