How to set Grails to upload the location localhost?
f = request.getFile('Filedata')
if(!f.empty) {
f.transferTo( new File("http://localhost/uploads" + File.separatorChar + f.getOriginalFilename()))
}
When I run this code, I get an error:
(The filename, directory name, or volume label syntax is incorrect).
Stacktrace follows: Message: http:\localhost\uploads\images.jpg (The
filename, directory name, or volume label syntax is incorrect)
But when I specify "c:/xampp/htdocs/uploads/" it is working. What's wrong?
Thanks.