开发者

For FTP and HTTP free space size

开发者 https://www.devze.com 2023-03-02 22:25 出处:网络
I wan开发者_StackOverflowt to know the free space on http and ftp path(network path like http://aboiil/hello and FTP) using java. I found a sample to know the free space on local drive:

I wan开发者_StackOverflowt to know the free space on http and ftp path(network path like http://aboiil/hello and FTP) using java. I found a sample to know the free space on local drive:

System.out.println(new File("\\\\altiris-vss\\SYM-SMP").getFreeSpace());

Please help me i am unable to solve it.


You're not going to be able to solve this on the client side of communicating with a FTP or HTTP server. The server side running these services would have to provide a mechanism to query for the free space.


I don't believe there is a standard way to determine how much data you can upload to a HTTP server. It will depend on your HTTP server how you do this.

FTP doesn't have a standard way to get free space.

0

精彩评论

暂无评论...
验证码 换一张
取 消