日期:2014-05-17 浏览次数:20787 次
create directory dir_desktop as 'C:\Documents and Settings\Administrator\桌面\';
declare
file utl_file.file_type;
begin
file := utl_file.fopen(upper('desktop '),'测试.txt','a');
utl_file.put_line(file,'XXX到此一游');
utl_file.fclose(file);
end;