17 lines
		
	
	
		
			513 B
		
	
	
	
		
			Factor
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			17 lines
		
	
	
		
			513 B
		
	
	
	
		
			Factor
		
	
	
		
			Executable File
		
	
! Copyright (C) 2008 Doug Coleman.
 | 
						|
! See http://factorcode.org/license.txt for BSD license.
 | 
						|
USING: accessors calendar.format combinators io.files
 | 
						|
kernel math.parser sequences splitting system tools.files
 | 
						|
generalizations tools.files.private io.files.info math.order ;
 | 
						|
IN: tools.files.windows
 | 
						|
 | 
						|
<PRIVATE
 | 
						|
 | 
						|
M: windows (directory.) ( entries -- lines )
 | 
						|
    <listing-tool>
 | 
						|
        { +file-datetime+ +directory-or-size+ +file-name+ } >>specs
 | 
						|
        { { directory-entry>> name>> <=> } } >>sort
 | 
						|
    list-files ;
 | 
						|
 | 
						|
PRIVATE>
 |