ORACLE獲取檔案大小

2021-05-23 19:49:16 字數 482 閱讀 2316

set serveroutput on

declare

ex    boolean;

flen  number;

bsize number; 

begin

utl_file.fgetattr('oraload', 'test.txt', ex, flen, bsize);

if ex then

dbms_output.put_line('file exists');

else

dbms_output.put_line('file does not exist');

end if;

dbms_output.put_line('file length: ' || to_char(flen));

dbms_output.put_line('block size: ' || to_char(bsize));

end fgetattr;

/

獲取檔案大小

1 找到檔案所在的絕對路徑。系統路徑 projectpath request.getsession getservletcontext getrealpath 檔案路徑 在上傳檔案的時候,一定會有檔案相對路徑,如果不清楚,可以打斷點然後在本地找到此檔案。檔案相對路徑 filepath 絕對路徑rea...

oracle獲取表空間檔案大小

oracle通過查詢dba segments表獲取表空間檔案資訊,包括表空間名稱,大小等 select tablespace name,sum max size sum bytes from dba segments group by tablespace name max size和bytes的單...

VC獲取檔案大小

vc獲取檔案大小 我查到兩種方法 方法一 win32 find data fileinfo handle hfind dword filesize const char filename 檔案的路徑及名字 hfind findfirstfile filename fileinfo if hfind ...