Filename.st
changeset 23719 b0f496b3b72b
parent 23667 8fd82341af73
child 23740 c9bcb6904e07
equal deleted inserted replaced
23718:b291679c05be 23719:b0f496b3b72b
  1849      'foo.bar.baz' asFilename extension
  1849      'foo.bar.baz' asFilename extension
  1850      'foo.' asFilename extension
  1850      'foo.' asFilename extension
  1851      'foo' asFilename extension
  1851      'foo' asFilename extension
  1852      '.login' asFilename extension
  1852      '.login' asFilename extension
  1853     "
  1853     "
       
  1854 ! !
       
  1855 
       
  1856 !Filename methodsFor:'attribute setter'!
       
  1857 
       
  1858 clearHidden
       
  1859     "ignored here 
       
  1860      - redefined for windows to clear the file's hidden flag"
       
  1861 
       
  1862     ^ false    "nothing changed"
       
  1863 
       
  1864     "Modified: / 12-02-2019 / 12:43:37 / Stefan Vogel"
       
  1865 !
       
  1866 
       
  1867 setHidden
       
  1868     "ignored here 
       
  1869      - redefined for windows to set the file's hidden flag"
       
  1870 
       
  1871     ^ false     "nothing changed"
       
  1872 
       
  1873     "Created: / 22-12-2018 / 18:03:43 / Claus Gittinger"
       
  1874     "Modified: / 12-02-2019 / 12:37:25 / Stefan Vogel"
  1854 ! !
  1875 ! !
  1855 
  1876 
  1856 !Filename methodsFor:'comparing'!
  1877 !Filename methodsFor:'comparing'!
  1857 
  1878 
  1858 < aFilename
  1879 < aFilename
  3291     "
  3312     "
  3292 
  3313 
  3293     "Modified: / 5.5.1999 / 13:41:21 / cg"
  3314     "Modified: / 5.5.1999 / 13:41:21 / cg"
  3294 !
  3315 !
  3295 
  3316 
  3296 setHidden
       
  3297     "ignored here 
       
  3298      - redefined for windows to set the file's hidden flag"
       
  3299 
       
  3300     "Created: / 22-12-2018 / 18:03:43 / Claus Gittinger"
       
  3301 !
       
  3302 
       
  3303 symbolicAccessRights
  3317 symbolicAccessRights
  3304     "return the access rights of the file as a aCollection of access symbols.
  3318     "return the access rights of the file as a aCollection of access symbols.
  3305      The returned collection consists of symbols like:
  3319      The returned collection consists of symbols like:
  3306         #readUser, #writeGroup etc."
  3320         #readUser, #writeGroup etc."
  3307 
  3321