当前位置:首页 » 文件管理 » 怎么改ftp路径

怎么改ftp路径

发布时间: 2022-02-24 14:00:09

Ⅰ 如何更改ftp用户的ftp根目录

搭建FTP
安装vsftpd
vim /etc/vsftpd/vsftpd.conf
修改或添加
anon_root=/opt
/etc/init.d/vsftpd start
chkconfig vsftpd on

这里的anon_root=/opt 就是指定只能访问opt下!!

Ⅱ ftp的路径怎么设置

问一下,你是想做ftp上传下载么?

首先你需要安装一个ftp服务端程序,启动起来,然后下载一个ftp客户端程序,测试能不能连接,首先这一块儿需要测试通过。
代码ftp上传下载
2.1 上传代码:
import java.io.File;
import java.io.FileInputStream;
import org.apache.commons.net.ftp.FTPClient;
import org.apache.commons.net.ftp.FTPReply;

public class test {

private FTPClient ftp;
/**
*
* @param path 上传到ftp服务器哪个路径下
* @param addr 地址
* @param port 端口号
* @param username 用户名
* @param password 密码
* @return
* @throws Exception
*/
private boolean connect(String path,String addr,int port,String username,String password) throws Exception {
boolean result = false;
ftp = new FTPClient();
int reply;
ftp.connect(addr,port);
ftp.login(username,password);
ftp.setFileType(FTPClient.BINARY_FILE_TYPE);
reply = ftp.getReplyCode();
if (!FTPReply.isPositiveCompletion(reply)) {
ftp.disconnect();
return result;
}
ftp.changeWorkingDirectory(path);
result = true;
return result;
}
/**
*
* @param file 上传的文件或文件夹
* @throws Exception
*/
private void upload(File file) throws Exception{
if(file.isDirectory()){
ftp.makeDirectory(file.getName());
ftp.changeWorkingDirectory(file.getName());
String[] files = file.list();
for (int i = 0; i < files.length; i++) {
File file1 = new File(file.getPath()+"\\"+files[i] );
if(file1.isDirectory()){
upload(file1);
ftp.changeToParentDirectory();
}else{
File file2 = new File(file.getPath()+"\\"+files[i]);
FileInputStream input = new FileInputStream(file2);
ftp.storeFile(file2.getName(), input);
input.close();
}
}
}else{
File file2 = new File(file.getPath());
FileInputStream input = new FileInputStream(file2);
ftp.storeFile(file2.getName(), input);
input.close();
}
}
public static void main(String[] args) throws Exception{
test t = new test();
t.connect("", "localhost", 21, "yhh", "yhhazr");
File file = new File("e:\\uploadify");
t.upload(file);
}
}
2.2 下载代码
这里没有用到filter,如果用filter就可以过滤想要的文件。

public class Ftp {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
Ftp ftp = new Ftp();
String hostname = "www.strawberry.com";
Integer port = 21;
String username = "username";
String password = "password";
String remote = "/c.txt";
String local = "/home/tin/LeonChen/FTP/";
try {
ftp.connect(hostname, port, username, password);
System.out.println("接收状态:"+ftp.download(remote, local));
ftp.disconnect();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

private FTPClient ftpClient = new FTPClient();

/*
* * 连接到FTP服务器
* * @param hostname 主机名
* * @param port 端口
* * @param username 用户名
* * @param password 密码
* * @return 是否连接成功
* * @throws IOException
*/
private boolean connect(String hostname, int port, String username,
String password) throws IOException {
ftpClient.connect(hostname, port);
ftpClient.setControlEncoding("UTF-8");
if (FTPReply.isPositiveCompletion(ftpClient.getReplyCode())) {
if (ftpClient.login(username, password)) {
return true;
}
}
disconnect();
return false;
}

/*
* 从FTP服务器上下载文件,支持断点续传,上传百分比汇报
*
* @param remote 远程文件路径
*
* @param local 本地文件路径
*
* @return 上传的状态
*
* @throws IOException
*/
public DownloadStatus download(String remote, String local)
throws IOException {
// 设置被动模式
ftpClient.enterLocalPassiveMode();
// 设置以二进制方式传输
ftpClient.setFileType(FTP.BINARY_FILE_TYPE);
DownloadStatus result;
// 检查远程文件是否存在
FTPFile[] files = ftpClient.listFiles(new String(remote
.getBytes("UTF-8"), "iso-8859-1"));
if (files.length != 1) {
System.out.println("远程文件不存在");
return DownloadStatus.Remote_File_Noexist;
}
long lRemoteSize = files[0].getSize();
String fildName = files[0].getName();
// 本地存在文件,进行断点下载
File f = new File(local+fildName);
if (f.exists()) {
long localSize = f.length();
if (localSize >= lRemoteSize) {
System.out.println("本地文件大于远程文件,下载中止");
return DownloadStatus.Local_Bigger_Remote;
}

// 进行断点续传,并记录状态
FileOutputStream out = new FileOutputStream(f, true);
ftpClient.setRestartOffset(localSize);
InputStream in = ftpClient.retrieveFileStream(new String(remote.getBytes("UTF-8"), "iso-8859-1"));
byte[] bytes = new byte[1024];
long step = lRemoteSize / 100;
long process = localSize / step;
int c;
while ((c = in.read(bytes)) != -1) {
out.write(bytes, 0, c);
localSize += c;
long nowProcess = localSize / step;
if (nowProcess > process) {
process = nowProcess;
if (process % 10 == 0)
System.out.println("下载进度:" + process);
// TODO 更新文件下载进度,值存放在process变量中
}
}
in.close();
out.close();
boolean isDo = ftpClient.completePendingCommand();
if (isDo) {
result = DownloadStatus.Download_From_Break_Success;
} else {
result = DownloadStatus.Download_From_Break_Failed;
}
} else {
OutputStream out = new FileOutputStream(f);
InputStream in = ftpClient.retrieveFileStream(new String(remote.getBytes("UTF-8"), "iso-8859-1"));
byte[] bytes = new byte[1024];
long step = lRemoteSize / 100;
long process = 0;
long localSize = 0L;
int c;
while ((c = in.read(bytes)) != -1) {
out.write(bytes, 0, c);
localSize += c;
long nowProcess = localSize / step;
if (nowProcess > process) {
process = nowProcess;
if (process % 10 == 0)
System.out.println("下载进度:" + process);
// TODO 更新文件下载进度,值存放在process变量中
}
}
in.close();
out.close();
boolean upNewStatus = ftpClient.completePendingCommand();
if (upNewStatus) {
result = DownloadStatus.Download_New_Success;
} else {
result = DownloadStatus.Download_New_Failed;
}
}
return result;
}

private void disconnect() throws IOException {
if (ftpClient.isConnected()) {
ftpClient.disconnect();
}
}

}

Ⅲ 如何修改FTP默认目录

这个必须要在 FTP 服务器上对 FTP 服务器的配置文件进行修改才行(包括默认的上传、下载主目录,一般是 public,是否允许匿名登录(anonymous)等)。

Ⅳ 怎么改FTP下载的路径

下次下载时,你先仔细地把出现的对话框读一遍,机器会默认你现有的下载软件,你看看是什么,
至于下载的东西,对话框中会有下载路径告诉你,
你把下载对话框中的东西都抄下来。
打开:我的电脑-C盘-
顺着下载路径就会找到你要看的东西,
有时下载 ,会让你自己选择下载地点。
不会很难,问问周围的人,自己找些基础的电脑书看一下,慢慢就会好,

Ⅳ windows12下怎么在命令行模式下修改ftp默认路径

首先执行ftp命令到ftp环境下,使用lcd 你要的目录 即可

Ⅵ 如何修改FTP的物理路径

发现问题,勇于提问

课堂上勇于提问是优等生渴望和追求知识的表现,他们知道高分是来自对知识的透彻理解和掌握。在学习的过程中,把没有弄懂的问题通过提问,通过爱问,达到深入研究,仔细体会的目的。所以在学生群体中间,好问的学生占有老师大量的资源,有一种得天独厚的优势,而不爱问的学生,就主动放弃了别人的帮助,让自己在困境中越陷越深。

条理清晰,善做笔记

优等生往往一边听课一边记重点,不是事无巨细全盘记录,特别善于记下老师补充的东西,课本上没有的东西,特别是思维方法更是认真记录。老师在课堂上强调的重点,在他的笔记本里都应该找到。有位尖子生在自己笔记中间画一条线,一边记老师的重点,一边写课文里的注释,复习一举两得。能及时整理自己平时细心积累的笔记本和错题集,特别注意让知识系统化,积极思考能解决什么问题。

Ⅶ 命令进入ftp后,怎么更换目录

自己亲自测试了一下,在FTP状态下,与DOS命令通用 你可以用 CD 更换目录,DIR 查看目录 PWD查看当前所在目录

Ⅷ 更改ftp根目录查看方式

方法和详细的操作步骤如下:

1、首先,打开ie浏览器,点击“设置”选项中的“Internet 选项”,如下图所示。

linux ftp 下怎么把默认路径改成自己的

1 比较一下俩个目录的权限: ls -ld /var/ftp 和 ls -ld /ftp/ff
2 关闭selinux

热点内容
android无线网卡 发布:2024-10-27 12:36:07 浏览:772
零基础c语言入门 发布:2024-10-27 12:20:45 浏览:689
相机在哪里设置密码 发布:2024-10-27 12:20:44 浏览:371
sql存储过程exec 发布:2024-10-27 12:17:14 浏览:405
安卓怎么取 发布:2024-10-27 12:11:02 浏览:995
凯特猫监控器的初始密码是多少 发布:2024-10-27 12:10:53 浏览:795
如何给魔兽地图加密 发布:2024-10-27 11:52:58 浏览:458
php调用html 发布:2024-10-27 11:48:30 浏览:342
益编程 发布:2024-10-27 11:48:18 浏览:73
最小生成树prim算法c语言 发布:2024-10-27 11:48:16 浏览:684