Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. rommeq

    space in file mtime

    Thank you very much. It works.
  2. rommeq

    space in file mtime

    If I can't apply "file mtime .." to a list, how then do I sort the list by file creation time? And why it works, if the file name, no space?
  3. rommeq

    space in file mtime

    what could be the problem?
  4. rommeq

    space in file mtime

    The file exists. Since the if you remove the spaces from the file name, it's all right. Example I create a list foreach val [glob -nocomplain -directory "F:/Tcl_project/images/" *] { lappend img [file tail $val] puts $img } and call the sort function set im [lsort -command sortl $img]
  5. rommeq

    space in file mtime

    Hello. I wrote a function to sort a list: proc sortl {first second} { set f1 [glob -nocomplain -directory "F:/Tcl_project/images" $first] puts f1=$f1 set t1 [clock format [file mtime "$f1"] -format %H%M%S] set f2 [glob -nocomplain -directory "F:/Tcl_project/images" $second] set t2 [clock...
  6. rommeq

    tcl and javascript

    How can I execute javascript code with tcl? Operating system windows. Where can I find detailed instructions? Found engine spidermonkey-1.8.5, but it did not work with it from tcl. Sorry for my English.

Part and Inventory Search

Back
Top