X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs2.git;a=blobdiff_plain;f=direct%2Fpython%2Fexamples.py;h=ac2c48c3a911d95c29a9cd6d963f4b1a8177b2e1;hp=6b40080432ea237122d392da1f2216c4a1b6d580;hb=58e2f3b9748ed3595ebdec6bdf3db2399ad18dcf;hpb=22e75ceb6885637cc22f864270d04ea83354548d diff --git a/direct/python/examples.py b/direct/python/examples.py index 6b40080..ac2c48c 100644 --- a/direct/python/examples.py +++ b/direct/python/examples.py @@ -22,10 +22,28 @@ def yaffs_ls(dname): yaffs_ls(fullname) sep = yaffs_readdir(dc) + yaffs_closedir(dc) + return 0 else: print "Could not open directory" return -1 +def yaffs_mkfile(fname,fsize): + fd = yaffs_open(fname,66, 0666) + if fd >= 0: + b = create_string_buffer("",1024) + totalwrite=0 + while fsize > 0: + thiswrite = 1024 if fsize > 1024 else fsize + result = yaffs_write(fd,b,thiswrite) + totalwrite += result + fsize -= result + if result != thiswrite: + fsize= 0 + + return totalwrite + else : + return -1 root = "/yaffs2"