使用Filezilla上传时如何查找文件的URL

时间:2014-03-28 15:42:13

标签: url ftp filezilla fileserver

亲爱的Stackoverflow用户,

我想知道如何在文件上传到文件服务器后查找文件的URL,以便我可以在ex中查看它。狩猎。

4 个答案:

答案 0 :(得分:1)

不可能...... FileZilla不知道FTP路径如何映射到HTTP路径,或者是否有HTTP路径可以访问您上传的内容

答案 1 :(得分:0)

右键单击远程文件,然后选择"将URL复制到剪贴板",然后粘贴到其他位置。当然,这只是获取文件的FTP URL。

答案 2 :(得分:0)

我认为,需要采取这一行动。但不支持filezilla。

但您可以使用此网络应用客户端。

Ftp path To http path (view demo)

html代码

<h2>Ftp path To http path</h2>
<table>
  <tr>
    <td><label for="http_path">http base path</label></td>
    <td><input id="http_path" type="text"> (e.g., http://example.com)</td>
  </tr>
  <tr>
    <td><label for="ftp_path">ftp path</label></td>
    <td><input id="ftp_path" type="text"> (e.g., ftp://username@domainOrIp/path)</td>
</tr>
  <tr>
    <td><label for="output">output</label></td>
    <td><input id="output" type="text"></td>
  </tr>
</table>

css代码

#http_path,#ftp_path{
  width : 200px;
}
#output{
  width : 500px;
}

js代码

function setCookie(cname, cvalue, exdays) {
    //w3schools.com
    var d = new Date();
    d.setTime(d.getTime() + (exdays*24*60*60*1000));
    var expires = "expires="+ d.toUTCString();
    document.cookie = cname + "=" + cvalue + ";" + expires + ";path=/";
} 
function getCookie(cname) {
    //w3schools.com
    var name = cname + "=";
    var decodedCookie = decodeURIComponent(document.cookie);
    var ca = decodedCookie.split(';');
    for(var i = 0; i <ca.length; i++) {
        var c = ca[i];
        while (c.charAt(0) == ' ') {
            c = c.substring(1);
        }
        if (c.indexOf(name) == 0) {
            return c.substring(name.length, c.length);
        }
    }
    return "";
} 

$(function(){
    $('#http_path').val(getCookie('http_path'));
    $('#http_path,#ftp_path').change(function(e){
        setCookie('http_path',$('#http_path').val(),365);
        $('#output').val(
            $('#http_path').val() 
            + '/' +
            $('#ftp_path').val().split('/').slice(3).join('/')
       );
  });
  $('#output').click(function(){
    $(this).select();
  });
});

答案 3 :(得分:0)

某些其他FTP客户端软件确实具有此功能。例如,OSX客户端“ Fetch”在您第一次尝试获取URL时要求您提供根http目录,然后记住这一点。如果您是第一次在最高级别的http目录中执行此操作,那么它也适用于子目录。