If you running this on a windows platform, be aware of the following:
The \' pathname separator character
Pathname components in Windows are separated by the\' character, which is also the escape character in MySQL. If you are using LOAD DATA INFILE or SELECT ... INTO OUTFILE, use Unix-style filenames with `/' characters:
mysql> LOAD DATA INFILE 'C:/tmp/skr.txt' INTO TABLE skr;
mysql> SELECT * INTO OUTFILE 'C:/tmp/skr.txt' FROM skr;
Alternatively, you must double the `\' character:
mysql> LOAD DATA INFILE 'C:\\tmp\\skr.txt' INTO TABLE skr;
mysql> SELECT * INTO OUTFILE 'C:\\tmp\\skr.txt' FROM skr;
If on the other hand you're running this on '733t' 7inux, then the file path may need to be specified as the user's current directory. Your current query looks as though it might be trying to write to the root '/' which ordinarily you should not have access to.