File transfer stop/resume

Hi all,
I can't seem to find elsewhere the answer to this simple question: can a file transfer be interrupted and then resumed some time later?
Thanks in advance!
Hartz

Well, Ralph, in the place where I live they say: "There's only one way to know: try! "
Yesterday evening I asked a friend of mine to send me a big file via iChat; when the transfer was around 20% I quit iChat, shut down my Mac and went to bed.
Today I asked my friend to send it again but up came a window telling me that there already was a file with the same name. What do you want to do: cancel or replace?
I chose "Replace" and the download began right where it had stopped the night before…
iChat is really amazing and I may be wrong but I think this feature is undocumented.
Hartz

Similar Messages

  • On Mac - Android File Transfer stopped working.   It says Unable to connect after installing the Verizon Software Update Utility from phone

    On Mac - Android File Transfer stopped working.   It says Unable to connect after installing the Verizon Software Update Utility from phone.

        Hi JoeC695,
    That's not good! We want your software to work properly. Have you tried uninstalling the Verizon Software Utility from your MAC? Do you receive a specific error message?
    Thanks,
    PamelaF_VZW
    Tweet us vzwsupport

  • Skype file transfer stops when system is idle.

    Hi, There is a problem that I have noticed with the recent versions of skype. It's that any file transmission is paused when the receiving user's system goes idle. This seems to be either an overkill security feature or a bug. I would like to have this issue fixed, Since, as an android developer, I send a lot of files to my friends for testing.

    Thanks for the reply OOO, I'm just about to open bug for gnome (did a break for lunch )
    Are you still suffering from the issue?
    can you please provide some details, for example your gnome version and if you have gnome-screensaver and or xscreensaver installed and or activated?
    are you using GDM or lightDM?
    I noticed from: https://wiki.archlinux.org/index.php/GNOME that the display manager has role in the locking/screesaver mechanism:
    Note: Native support for screenlocking in GNOME is provided by GDM. If you choose to not use GDM you will need to use a different screen locking program such as XScreenSaver.
    about your say for Antergos,
    I would like to direct you to: distrowatch
    Antergos using standart arch and AUR packages (managed by packman), I would say that Antergos is arch, just with graphical installer..
    If you think that it's not arch, we can continue and argue about this fact, but I would like to concentrate on trying to understand and resolve the "blank screen" issue (that I believe is actually a gnome issue )
    opened: https://bugzilla.gnome.org/show_bug.cgi?id=737256
    please add your info there as well.
    Thanks,
    Elia.

  • File Transfer error - stops at 26280 bytes.

    I am trying to make a little file transfer utility, and it works when I test the client and server sides on the same machine, but when I began to test the client and server on different machines it starts giving me problems. For files under 26280 bytes the file transfers completely, no problems. But for anything over that amount, the server stops the transfer and returns a bunch of errors on the server side. The client thinks the file is complete and quits. I am pretty sure it has something to do with the way I have set up the Streams. Here is the code snippit:
    For Server:
    OutputStream os = socket.getOutputStream();
         BufferedOutputStream bos = new BufferedOutputStream(os);
    File nFile = filename;
    long long_size = nFile.length();
    int size = (int)long_size;
    byte[] buffer = new byte[size];
    FileInputStream fis = new FileInputStream(nFile);
    DataInputStream dis = new DataInputStream(inStream);
    while(fis.read(buffer)!=-1){
    bos.write(buffer);
    bos.flush();
    For Client:
    InputStream is = sock.getInputStream();
    BufferedInputStream bis = new BufferedInputStream(is);
    FileOutputStream fos = new FileOutputStream(file);
    BufferedOutputStream bosfile = new BufferedOutputStream(fos);
    while(true) {
    size = bis.available();
    if(size == 0)
    break;
    byte[] pOutput2 = new byte[size];
    rc=bis.read(pOutput2, 0, size);
    if(rc == -1)
    break;
    bosfile.write(pOutput2);
    if(rc < size)
    count +=rc;
    break;
    else
    count +=size;
    Any help would be much appreciated. Thank you very much

    Doubtful code:
    size = bis.available();
    if(size == 0)
    break;
    You have a buffered input stream hanging on a socket input stream. So what if the client gets ahead of the server? Answer: for a while, there is no data available.

  • File transfer resume

    file transfer resume???
    does DW do this?
    i keep getting kicked off a remote connection and have to start over.

    AFAIK no.  If you're getting a lot of time outs during long data transfer sessions, try using a dedicated FTP ware like Cute, WS_FTP or Filezilla. 
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Folder/file permissions stop bluetooth transfer from my iMac to to MacBook Air ---  Both on Yosemite 10.10.1

    e.g.  on iMac have 50 photo files in a folder ... folder can not be transferred to my MacBook Air via bluetooth - receive error message "Items can’t be copied to “Desktop” because you don’t have permission to read them."      I change the folder permissions on iMac (get info>>assign others to r/w permission), and also change the folder to a shared folder.   I still get the same message on MacBook Air.  
    I have not tried manually changing 50 individual file permissions in the folder ...eeegads!  
    Single files transfer properly between both computers ....after permissions are manually changed.   What's going on?   I never had to even say the word "permissions" pre-Yosemite.   Any advice would be greatly appreciated

    There are apps such as Simple Transfer which allow you to transfer photos to/from your iPad and your computer via your wifi network - they will copy into the Camera Roll album in the Photos app on your iPad

  • Java.IO file transfer

    Hi all,
    I have been trying to transfer the file from one server to another using java code. Using the api in the java.IO and the code from the following site http://www.roseindia.net/java/example/java/io/CopyDirectory.shtml
    First i shared the folder to be transfered, then at the receiving end, i map the network drive.. Using the code as in the site, i can transfer the file over.
    But i found that if the connection break in the mapping of the network drive, the code cannot resume the file transfer from where it left behind.
    Actually, my requiremnts is to able to transfer the file and able to resume from where it stop when the connection break and not to overwrite any files.. and it able to check the sending server if there is any new files added to the folder, if yes then it will transfer over the receiving server.
    Thanks
    cheng

    Using ... the code from the following site http://www.roseindia.net/java/example/java/io/CopyDirectory.shtml
    That was your first mistake. That site is a notorious source of complete rubbish. In this case, unusually, the code looks not too bad apart from not calling mkdirs() as well as mkdir().
    But i found that if the connection break in the mapping of the network drive, the code cannot resume the file transfer from where it left behind.Correct. It doesn't do that. So you need to modify it to do so. If it finds that the target file exists and has a non-zero length, it needs to open it for append and skip to that offset in the source file before starting the copy loop. If it finds that the target file exists and has the same length as the source file and the same date it can skip the file completely. That should cover both your requirements.

  • MBP (mid-2009) freezing, slow installations and file transfer

    I bought the latest MacBook Pro model and installed Snow Leopard on a cleanly formatted hard drive. I have tried migrating via ethernet and FireWire from my iMac, but the migrations failed either due to freezing (via FireWire after roughly 24 hours of file transfer) or by an error message (ethernet with Migration Assistant).
    Only through a Time Machine backup was I able to transfer my account files to the MBP, which again totaled at over 20 hours of transferring. The system was a mess, clogged constantly by freezing and spinning beach balls of death for durations lasting around 10-20 seconds during which music would clip after 5-10 seconds of everything not responding, this being accentuated especially during installations. I decided to format and try anew.
    Now I've formatted the hard drive, installed Snow Leopard and will transfer my files manually onto a clean account. Installations take a long time although SL installation is within 30 minutes, iLife took 1.5 hours to install 5 GB. During the installation Safari stopped responding, as did the entire system, and the spinning beach ball would keep spinning. Watching a 480p trailer in Quicktime made the entire computer freeze up (no video/audio) for 10 seconds halfway. Transferring 136 GB (my Music folder) will take around 15 hours according to the estimate after 10 minutes of transferring.
    I've sold my iMac now and all I have are the files on my external hard drive. I want to get them onto my MBP ASAP but the slowness is preventing me from doing what needs to be done and it's very frustrating. When I try to boot into Hardware Testing by holding D down the computer doesn't do it no matter what (Application DVD in or not, plugged into power or not). I've tried resetting PRAM but I get the same inaction.
    Any ideas?
    Edit: I've done Disk Utility to no avail, it finds nothing wrong.

    Installed, still getting freezes with spinning beach balls. Transfer says it would take 1 hour opposed to that 15 hours, but it stops transferring after X amount of gigabytes (from 0.5 to 5), not do anything for a while and then continue, stretching the estimate to over 2 hours after some time. I don't know if this is just with the hard drive.
    The freeze-ups are frustrating as **** and make for a very poor experience. Any ideas to get to the bottom of this? I still haven't been able to boot into the Hardware Test no matter how much I try.

  • How to achieve the maximum file transfer rate from PXI to local host?

    I will have to copy a huge amount of data (as big as 50 GB) from a PXI-8106 unit on site to a laptop. Currently it would take several hours. It is critical to max out the data transfer rate.
    The standard method we've been using is just drag and drop using Windows Explorer via FTP. I tried to use FTP VIs with Filezilla Server as well but the transfer rate is only like 1.5 MB/s. Is this normal? Once I saw it was 3.0 MB/s but for some reason, that isn't happening now.
    For another option, I tried to transfer data to a USB flash drive but it's even slower. As far as I know, USB 2.0 transfer rate is supposed to be around 60 MB/s but why would it be slower than 1.5 MB/s? What could be the speed limiting factor in my file transfer setup?
    Any tips on improving file transfer rate would be appreciated!

    Sustained 40 MB/s? That is my dream speed! The maximum speed I've ever seen here was about 25 MB/s, which is still very good, and that happened only after copying back and forth, which I explained above. Let me go through what I did with screencaps first.
    These are the test tdms files to transfer in the PXI: an original file witten in the PXI and its copy file. I copied the original file from PXI to laptop and renamed it (added '_copy') and then copied it back to PXI.
    FTP module is transferring the original file to the Filezilla server on laptop. Note the low speed.
    FTP module is transferring the copy file to the Filezilla server on laptop. Note the higher speed.
    This is the FTP sub VI I'm using. It transfers files in sub-folders (one level lower), too. The data connection is set to 'passive' on the FTP Put Multiple Files VI but it doesn't seem to make any difference. I attach the sub VI.
    You tried the file transfer with a 500 MB text file. Would there be any difference if the file type was tdms? Would the RAM size matter? It is 2GB here.
    And the LED is orange, which means Gigabit.
    Another question: Is there any way to programmatically stop file transfer in progress? Currently, I just have to restart the PXI.
    Thank you!
    Attachments:
    FTP.vi ‏40 KB

  • How can I transfer my resume from an email to Adobe?

    i need to transfer my resume from an email document to a standard PDF or what ever format needed to use on job links websites.

    Depending on the type of the file, you should either get an icon of a box with an arrow coming out of it in the top right corner which should give an option to 'open in', or for some document types if you press and hold in the body of the document you should then get a popup with an 'open in' option - you will need an app that is capable of reading the document type/format that your resumé is in, otherwise there will be nothing to open/save it with.

  • File transfer problem during ISE 1.3 upgrade

    We have problem running the upgrade command:
    iseadm01/admin# application upgrade cleanup
    Application upgrade preparation directory cleanup successful
    iseadm01/admin# application upgrade prepare ise-upgradebundle-1.2.x-to-1.3.0.876.x86_64.tar.gz FTP
    Getting bundle to local machine...
    % File transfer error
    iseadm01/admin#
    The sniffertrace shows that the ISE 1.2 is sending TCP RST after about 30MB file transfer. If we run the command serveral times, it stops exactly after the same amount of transferred bytes.
    The disk utilazation looks OK:
    iseadm01/admin# dir
    Directory of disk:/
          16384 Sep 18 2014 15:55:48  lost+found/
               Usage for disk: filesystem
                      172761088 bytes total used
                    14275047424 bytes free
                    15234142208 bytes available
    iseadm01/admin#
    iseadm01/admin# dir
    Directory of disk:/
          16384 Sep 18 2014 15:55:48  lost+found/
               Usage for disk: filesystem
                      172761088 bytes total used
                    14275047424 bytes free
                    15234142208 bytes available
    iseadm01/admin#
    We have Another ISE (monitor node) and the problem is excact the same on that node.
    Thanks

    On FileZila click on the User Accounts Icon. The dialog box will show you  defined users. By default only anonymous is created.
    So you need to create a local ftp username and passowrd. Then assign it a home directory under shared folders. This will be the dfault location a remote clietn will look for files and where you would find the ISE upgrade package, for example.
    See following screenshot....

  • Problem with file transfer over the net

    Hi!I'm trying to make a program that allows to send/receive files and I'm almost done,except for a little problem:the file received has some bytes missing at the end!
    For example if I send a text the last 2-3 lines are missing,same thing for an image,an html document,etc.,although the file opens without any problem.As transport-level protocol I'm using TCP so it's not a networking problem,I think the problem is in the application layer so I post here the code,hoping someone helps me out(in this example I'm trying to send an image .jpg):
    Sender:
    Socket connectionSocket=new Socket("ipadress",port);
    FileInputStream source=new FileInputStream(System.getProperty("user.home")+"\\Documents\\image.jpg");
    BufferedOutputStream send=new BufferedOutputStream(connectionSocket.getOutputStream());
    int c;
    while ((c = source.read()) !=-1)
                    send.write(c1);
    Receiver
    ServerSocket receiverSocket=new ServerSocket(port);
    Socket  connection=receiverSocket.accept();
    BufferedInputStream rec=new BufferedInputStream(connection.getInputStream());
    FileOutputStream receivedFile=new FileOutputStream(System.getProperty("user.dir")+"\\received.jpg");
    int c;
    while ((c = rec.read()) != -1)
                    receivedFile.write(c);I think the problem is in this code:somehow the sender stops sending bytes before the end of the file is actually reached...what do u think?

    Thank you so much!At the end it was a very stupid mistake!:D
    Btw now that the main problem is solved I continue posting asking for your opinion:is this program for you efficient enough?Or there's a better way to do file transfer?

  • Stuck in file transfer mode?

    I recently bought a NOkia 5310 express music phone, and I'm trying to copy some songs onto it. Whenever I try to get it set up to copy the music it says that my phone is "in file transfer mode, and cannot be use with pc suite, quit file transfer mode from the phone if you want to use the phone with pc suite". I have no idea what file transfer mode is, or how to get out of it. anyone have any idea?

    Hi,
    First of all, it doesn't matter if you choose the option of "PC Suite" or "Media".  It works both way when all you want to do is to transfer music.  I personally wouldn't choose "Media".  Somehow for my N97, my Messenging will switch back from mass memory to phone memory and it is really annoying.  At times when I choose "Media", my computer says that the USB is connected in non-compatible mode etc.
    One thing I notice too is that my music player would be "hanged" if connected via USB.  Nothing we can do.  To listen to your music using your phone, I reckon you have to stop the USB connection.  So that is normal.
    Using menu setting to PC Suite saves you the trouble of having to select the mode EVERYTIME.  So, that too is a good choice.
    Let's forget about OVI Player for a moment.  After you plug in your phone, if you start the PC Suite, you should see that your phone is detected.  If not, try reconnect the cable, try using PC Suite to connect to the phone (there is a button to do that I remember if the phone is not detected).  If still cannot, like my friend, you will probably need to reinstall the latest firmware via Nokia Care Store.
    Let's say your PC Suite application can detect your phone, you may wish to see if you can transfer the music.  You may wanna do one testing here.  Open up the File Manager from your PC Suite.  Transfer the songs manually, then do a refresh at your Music Library of your phone.  You should see the tracks.  If yours is a Comes With Music like mine, you can get the licence over the air.  Once that is done, I suppose you should be able to transfer the music files via your OVI Player.  While, it is tedious, but that was how it works for me.
    I wish Nokia is easier on us, but it is not.  Sorry. 
    Visit http://www.WilfridWong.com - where all good things are meant to be shared!

  • IdeaTab A2109A - large file transfer

    Hello,
    Trying to transfer a large file (4.5GB) to tablet IdeaTab A2109A connected to a laptop, this gets truncated to 1.2GB and transfer stops. Smaller files are copied fine, but seems that larger files have problem.
    Tablet has no SD card attached, thus I'm transfering directly to its internal storage (11GB free space).
    Android ver. 4.1.1/ kernel 3.1.10
    Please share your ideas/experience/solution on transfering large files for IdeaTab A2109A.
    Thanks!

    I've never tried transferring a file that big, but I've found using adb push and pull to transfer faster than using MTP.

  • How to Measure file transfer speed in iChat

    hi guys, is there anyway to measure the file transfer rate ,while sending o receiving a specific file
    in iChat?

    Actually I should say that it's not a good solution to stop all other applications to measure the network
    traffic for one application, there is another problem cause even no file is during transfer the application sends and receives packets from internet and this way is not accurate to measure .

Maybe you are looking for

  • Home sharing problems since Apple TV update

    Hello everyone; I have a Apple TV 2, an iPhone 4S, an iPad 2 and a Macbook pro 17" on the same iCloud account. Syncing of data between the computer and two iOS devices has been rock solid. Kudos on this system architecture, it is exactly what I have

  • Can I stream from my ipad to a Pc/Mac?

    I know how to stream movies from my Mac to my iPad (via AirVideo) But I want to be able to stream movies (the other way around) from my iPad to my girlfriends PC when i go round to her house, is it possible to do so with some sort of app? Thanks in a

  • How do I Load a clob from an XML field in an XMLTYPE using XMLTABLE ?

    I am trying to load data into a CLOB from a XML field using XMLTABLE. I have a SUMMARY xml field with over 100 K of data (potentialy) and I can load all the other datatype fields to columns but can not load the xml fields over 4000 characters. exampl

  • Satellite R630 - No Fullscren on TV

    Hey, i tried to connect my Notebook with my TV with an HDMI-Wire, but I can't get a Fullscreen in the TV - there is a Black Frame around the Picture....anybody can help Please!!! thx a lot!!!

  • Restrict user to input 0 - 9 for string data

    Hi I would like to input this control at the front panel. This control allow user to choose from 0 - 9. Eg 0 1 2 3 4 5 6 7 8 9 . The control do not allow user to put -1 -2 -3 ... or 10 11 ... or decimal place. This number will be further converted in