• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/msdosfs-209.1.1/

Lines Matching refs:mkfile

206             parent.mkfile('UPPER.TXT')  # Short name, all upper case
207 parent.mkfile('lower.txt') # Short name, all lower case
208 parent.mkfile('mixed.TXT') # Short name, part lower and part upper
209 parent.mkfile('MyFile.txt') # Long name (mixed case, 1 long name entry)
211 parent.mkfile('abcdefghijklmnopqrstuvwxyz')
213 parent.mkfile('The quick brown fox jumps')
215 parent.mkfile('x'*255)
217 parent.mkfile('Locked', attributes=ATTR_ARCHIVE|ATTR_READ_ONLY)
219 parent.mkfile('Hidden', attributes=ATTR_ARCHIVE|ATTR_HIDDEN)
221 parent.mkfile('System', attributes=ATTR_ARCHIVE|ATTR_SYSTEM)
223 parent.mkfile('xDeleted', deleted=True)
251 parent.mkfile('Halloween', modDate=Timestamp(10,31,2013,17,0,0))
252 parent.mkfile("Valentine's", createDate=Timestamp(2,14,2013,22,33,44.551))
253 parent.mkfile("Loma Prieta", createDate=Timestamp(10,17,1989,17,4,6.9), modDate=Timestamp(10,17,1989,17,4,0))
398 root.mkfile('Empty')
399 root.mkfile('Twice1', content='Delete me twice')
400 root.mkfile('Multi1', content='Multi1')
401 root.mkfile('Multi2', content='Multi2')
402 root.mkfile('Twice2', content='Delete me twice in a single call')
403 root.mkfile('Existing', content='Existing')
404 root.mkfile('Locked', content='Locked', attributes=ATTR_ARCHIVE | ATTR_READ_ONLY)
405 root.mkfile('Keep Me', content='Keep Me')
406 root.mkfile('This file has a long Unicode name', content='This file has a long Unicode name')
411 sub.mkfile('Child', content='Child')
425 root.mkfile('Contiguous', content='I am a contiguous file!\n'*4321)
435 root.mkfile('Extents', length=length, clusters=clusters)
446 root.mkfile('Fragmented', length=length, clusters=clusters)