Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] spaces in file names Re:(3)

From: jeff:rebol at: 21-Aug-2000 8:21

Howdy, Andrew and Fantam and all:
> >>> to url! join ftp://usr:[pass--ftp--ftp--com]/ %"test/test > >>> test.txt" > > == ftp://usr:[pass--ftp--ftp--com]/test/test test.txt
The to-url is redundant, actually: join ftp://ftp.example.com/ %"spaces in file.txt" == ftp://ftp.example.com/spaces in file.txt You can also do: site: ftp://ftp.example.com/ site/%"spaces in file.txt" == ftp://ftp.example.com/spaces in file.txt Above is handy if you're doing a number of files.