我想在Oracle form 10g中创建一个GUI,创建此页面的目的是:
-user能够上传和查看上传的文件(上传到ftp)
-User能够删除他的文件(从ftp)
-user能够下载文件(从FTP)
-this图形用户界面也应该能够传输大文件(大约1200万)
我是Oracle forms 10g的新手,因此在我开始之前,我想在这里提出我的问题并获得帮助会很好。
目前我们使用Oracle form 6i,我们使用批处理文件和ftp服务来手动移动文件,但是通过增加我们的分支,我想如果我们自动完成这些工作,我们可以减少错误。另外,我们的分支现在可以在ftp中手动复制他们的文件。
我正在寻找像拖
我有一个FTP类,它具有连接、断开、上传和下载文件到另一个ftp服务器的功能。
我有这个函数,我想记录文本文件中上传失败的原因,但是基于文档,它只在失败时返回false:
public function upload($remote_file, $file, $mode = FTP_ASCII)
{
if (!ftp_put($this->ftp_connection, $remote_file, $file, $mode))
{
throw new Exception("There was a problem while uploading
我要做的是使用PHP通过FTP自动上传zip文件,然后提取zip文件。然而,首先要做的事情是:我在使用PHP的ftp_put函数上传zip文件时遇到了问题。这是我的剧本:
// set up basic connection
$conn_id = ftp_connect($ftp_server);
// login with username and password
$login_result = ftp_login($conn_id, $user, $pass); //<!--same as cPanel account user and pass?
// check conn
我不确定这是curl问题还是代码的问题。我正在使用curl -T将目录的内容上传到远程服务器,而且根据帮助文件和一些googling,curl没有跳过文件的方法,所以我试图围绕它编写脚本。
#!/bin/sh
cd /foo/bar
curl --user foo:bar -ls ftp://ftp.server.foo/remote/dir/ > /foo/bar/temp.txt
for file in ./*.dat
do
if ! grep -Fq "$file" temp.txt
then
curl --user foo:bar