Jump to content

sSpider

Members
  • Posts

    2
  • Joined

  • Last visited

Everything posted by sSpider

  1. here's the code i'm working on. it outputs to clipboard the directory contents. cant get no output from Local $cdir = FileGetAttrib($fname) ;----dosnt work nothing relaying on this code works downstream, leaving me with non-trailing \ on the directorys am i missing something here? #NoTrayIcon If $CmdLine[0] = 0 Then Exit Local $isfile = "" Local $fsearch = FileFindFirstFile($CmdLine[1] & "\*") If $fsearch = -1 Then Exit While 1         Local $fname = FileFindNextFile($fsearch)         If @error Then ExitLoop         Local $cdir = FileGetAttrib($fname) ;----dosnt work         ConsoleWrite($cdir & @CRLF)     Select         Case StringInStr($cdir,"D")         $isfile = $isfile & $CmdLine[1] & "\" & $fname & "\" & @CRLF         Case Else         $isfile = $isfile & $CmdLine[1] & "\" & $fname & @CRLF     EndSelect WEnd ClipPut(StringTrimRight($isfile,2)) Beep(500,200) Exit
  2. here are some examples of the full line of send to tools with icons SendTo.ClipboardAsContents.au3 SendTo.ClipboardAsName.au3 SendTo.CommandPrompt.au3 SendTo.CopyFolder.au3 SendTo.MoveFolder.au3 SendTo.OneDrive.au3 SendTo.Run.au3 SendTo.Clipboard(Image).au3 SendTo.7z Updated Command Prompt SendTo.CommandPrompt.au3
×
×
  • Create New...