How to see the  file transfer speed on a mac

Hi, I'm kind of a beginner with a Mac, I have worked on windows for all this years and now I have a small dilema. Can someone please tell me how you can see the file transferring speed on a mac. When you copy and paste from one drive to another, or from time capsule to my mac, etc a dialog appears showing you a progress bar and the time remaining. I would also like to see the speed of the transfer. Is it posible to see this variable?

In windows - vista when you copy or paste a folder from one location to another in the file transfer pop-up you can see the speed of the transfer.(You must press the more details arrow on that pop-up). Does Leopard has any configuration for this kind of information.
I will try iGet and write here my feedback.

Similar Messages

  • How to set the file transfer mode to binary

    Hi,
    I have a requirement to upload files from local machine to server, and it is working fine.
    But after uploading files junk characters are entered after each line, so want to set the file transfer mode to binary to get rid from this error.
    We have checked that if we ftp the files manually then also getting the same problem when the transfer mode is not selected as binary.
    Please give your valuable advice.
    Thanks,
    Ranita

    Hi,
    I want to set the file transfer mode through controller code, presently I am using the below code where no file transfer mode is specified ::
    public void upLoadFile(OAPageContext pageContext,OAWebBean webBean)
      String serverPath = null;
      OAApplicationModuleImpl am = (OAApplicationModuleImpl)pageContext.getApplicationModule(webBean);
       try {              
          Connection conn = am.getOADBTransaction().getJdbcConnection();     
          String query = "select  distinct variable_name, value from fnd_env_context where variable_name = 'XXCUST_TOP' and concurrent_process_id = ( select max(concurrent_process_id) from fnd_env_context )";
          PreparedStatement stmt = conn.prepareStatement(query);
           for (ResultSet resultset = stmt.executeQuery();
                          resultset.next(); )
                 serverPath  = resultset.getString("value");
            stmt.close();  
           catch(Exception ex)
             throw new OAException(ex.getMessage(), OAException.ERROR);
       String filePath = serverPath+"/"+pageContext.getParameter("FileType");
       //System.out.println("Default File Path---->"+filePath);
       String fileUrl = null;
       try
        DataObject fileUploadData =  pageContext.getNamedDataObject("MessageFileUpload");
      //FileUploading is my MessageFileUpload Bean Id
        if(fileUploadData!=null)
         String uFileName = (String)fileUploadData.selectValue(null, "UPLOAD_FILE_NAME"); 
         String contentType = (String) fileUploadData.selectValue(null, "UPLOAD_FILE_MIME_TYPE");  
         //System.out.println("User File Name---->"+uFileName);
         FileOutputStream output = null;
         InputStream input = null;
         BlobDomain uploadedByteStream = (BlobDomain)fileUploadData.selectValue(null, uFileName);
         //System.out.println("uploadedByteStream---->"+uploadedByteStream);
         File file = new File(filePath, uFileName);   //C:\\Ranita
         //System.out.println("File output---->"+file);
         output = new FileOutputStream(file);
         //System.out.println("input---->"+input);
         byte abyte0[] = new byte[0x19000];
         int i;
         while((i = input.read(abyte0)) > 0)
         output.write(abyte0, 0, i);
         output.close();
         input.close();
         HashMap map = new HashMap();
         map.put("fromPage","Y");
         pageContext.forwardImmediatelyToCurrentPage(map,true,OAWebBeanConstants.ADD_BREAD_CRUMB_YES);
       catch(Exception ex)

  • How to see the file at the application server

    HI TO ALL SDNERS ,
                                 THIS IS MY CODE WHERE TO CHECK THE DOWNLOADED FILE AT THE APPLICATION SERVER.IN TCODE AL11 I HAVE SEEN THERE IS NO FILE GETTING CREATED.WHEN TRANSFERRING THE SY-SUBRC VALUE IS ZERO.
    Program Name        : ZME11_BDC.
    Title               : PURCHASE INFORMATION RECORD LOAD PROGRAM
    Program Objective   : THIS PROGRAM READS IN THE PURCHASE
                          INFORMATION FILE. IT CREATES A BDC SESSION TO
                          USE TO LOAD THE PURCHASE INFORMATION RECORDS
                          INTO SAP using the ME11 Transaction.
    REPORT  ZME11_BDC no standard page heading MESSAGE-ID ZHNC line-size 55.
                constants declaration
    constants: c_x value 'X',
               c_sess type apqi-groupid value 'zcustomer',
               c_xd01 type tstc-tcode value 'ME11'.
                  DECLARING VARIABLES
    DATA: V_MSG(255),
          V_ERREC TYPE I,"NO OF FAILED RECORDS
          V_LINES."NO OF RECORDS
           FLAG DECLARATIONS
    DATA: FG_DATA_EXIST VALUE 'X',"CHECK FOR DATA
          FG_SESSION_OPEN VALUE ''.
          STRUCTURES AND INTERNAL TABLE DECLARATIONS
    TYPES :BEGIN OF TY_PIR,
             LIFNR TYPE EINA-LIFNR,
             MATNR TYPE EINA-MATNR,
             EKORG TYPE EINE-EKORG,
             WERKS TYPE EINE-WERKS,
             VERKF TYPE EINA-VERKF,"sales person
             TELF1 TYPE EINA-TELF1,"telephone
             URZLA TYPE EINA-URZLA,"country
             REGIO TYPE EINA-REGIO,"region
             APLFZ(5),"plan deleivery time
             EKGRP TYPE EINE-EKGRP,"purchase group
             NORBM(13),
             NETPR(13),
         END OF TY_PIR.
    DATA : IT_PIR TYPE TABLE OF TY_PIR,
           WA_PIR LIKE LINE OF IT_PIR.
    DATA: BEGIN OF IT_BDCDATA.
    INCLUDE STRUCTURE BDCDATA.
    DATA END OF IT_BDCDATA.
    DATA : BEGIN OF IT_BDCMSG.
    INCLUDE STRUCTURE BDCMSGCOLL.
    DATA END OF IT_BDCMSG.
                      SELECTION SCREEN
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    PARAMETER : FNAME TYPE RLGRAP-FILENAME.
    SELECTION-SCREEN END OF BLOCK B1.
                           AT SELECTION ON VALUE REQUEST
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR FNAME.
    CALL FUNCTION 'F4_FILENAME'
    EXPORTING
       PROGRAM_NAME        = SYST-CPROG
       DYNPRO_NUMBER       = SYST-DYNNR
       FIELD_NAME          = ' '
    IMPORTING
       FILE_NAME           = FNAME.
                             START OF SELECTION
    START-OF-SELECTION.
    PERFORM F_GET_DATA USING FNAME
                       CHANGING IT_PIR.
    PERFORM F_GENERATE_DATASET USING FNAME
                               CHANGING IT_PIR WA_PIR.
    *&      Form  F_GET_DATA
          text
         -->P_V_FNAME  text
         <--P_IT_PIR  text
    FORM F_GET_DATA  USING    P_FNAME LIKE FNAME
                     CHANGING P_IT_PIR LIKE IT_PIR.
    DATA: LV_FILE TYPE STRING.
    LV_FILE  = FNAME.
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        FILENAME                      = LV_FILE
       FILETYPE                      = 'DAT'
      HAS_FIELD_SEPARATOR           = 'X'
      HEADER_LENGTH                 = 0
      READ_BY_LINE                  = 'X'
      DAT_MODE                      = ' '
      CODEPAGE                      = ' '
      IGNORE_CERR                   = ABAP_TRUE
      REPLACEMENT                   = '#'
      CHECK_BOM                     = ' '
    IMPORTING
      FILELENGTH                    =
      HEADER                        =
      TABLES
        DATA_TAB                      = P_IT_PIR
    EXCEPTIONS
       FILE_OPEN_ERROR               = 1
       FILE_READ_ERROR               = 2
       NO_BATCH                      = 3
       GUI_REFUSE_FILETRANSFER       = 4
       INVALID_TYPE                  = 5
       NO_AUTHORITY                  = 6
       UNKNOWN_ERROR                 = 7
       BAD_DATA_FORMAT               = 8
       HEADER_NOT_ALLOWED            = 9
       SEPARATOR_NOT_ALLOWED         = 10
       HEADER_TOO_LONG               = 11
       UNKNOWN_DP_ERROR              = 12
       ACCESS_DENIED                 = 13
       DP_OUT_OF_MEMORY              = 14
       DISK_FULL                     = 15
       DP_TIMEOUT                    = 16
       OTHERS                        = 17
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    IF P_IT_PIR IS INITIAL.
    FG_DATA_EXIST = ''.
    ENDIF.
    ENDFORM.                    " F_GET_DATA
    *&      Form  F_GENERATE_DATASET
          text
         -->P_V_FNAME  text
         <--P_IT_PIR  text
    FORM F_GENERATE_DATASET  USING    P_V_FNAME LIKE FNAME
                             CHANGING P_IT_PIR LIKE IT_PIR
                                      P_WA_PIR LIKE WA_PIR.
    MESSAGE I001(ZHNC).
    *OPENING FILE AT THE APPLICATION SERVER FOR WRITING
    OPEN DATASET FNAME FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    IF SY-SUBRC  EQ 0.
    MESSAGE I002(ZHNC).
    LOOP AT P_IT_PIR INTO P_WA_PIR.
    SPLIT P_WA_PIR AT '*' INTO P_WA_PIR-LIFNR
                               P_WA_PIR-MATNR
                               P_WA_PIR-EKORG
                               P_WA_PIR-WERKS
                               P_WA_PIR-VERKF
                               P_WA_PIR-TELF1
                               P_WA_PIR-URZLA
                               P_WA_PIR-REGIO
                               P_WA_PIR-APLFZ
                               P_WA_PIR-EKGRP
                               P_WA_PIR-NORBM.
    *TRANSFER THE FILE FROM INTERNAL TABLE TO APPLICATION SERVER
    MESSAGE I003(ZHNC).
    TRANSFER P_WA_PIR TO FNAME.
    ENDLOOP.
    *CLOSING THE FILE AT THE APPLICATION SERVER
    CLOSE DATASET FNAME.
    ENDIF.

    Hello,
    I made a similar program. You can have a look at it.
    *&      Form  write_to_app_server
          text
    -->  p1        text
    <--  p2        text
    FORM write_to_app_server.
    To get filename
      PERFORM get_filename.
    To write into the application server
      OPEN DATASET g_filename_with_path FOR OUTPUT IN TEXT MODE.
      IF sy-subrc = 0.
        LOOP AT <l_table> INTO <l_line>.
          TRANSFER <l_line> TO g_filename_with_path.
        ENDLOOP.
        CLOSE DATASET g_filename_with_path.
      ELSE.
        CLOSE DATASET g_filename_with_path.
      ENDIF.
    To send mail
      PERFORM send_mail.
    ENDFORM.                    " write_to_app_server
    *&      Form  get_filename
          text
    -->  p1        text
    <--  p2        text
    FORM get_filename.
      DATA : l_log_path TYPE  filepath-pathintern
                          VALUE 'Y28M_DOWNLOADS_BACKGROUND' .
      CALL FUNCTION 'FILE_GET_NAME_USING_PATH'
           EXPORTING
                client                     = sy-mandt
                logical_path               = l_log_path
                operating_system           = sy-opsys
                file_name                  = p_fname
           IMPORTING
                file_name_with_path        = g_filename_with_path
           EXCEPTIONS
                path_not_found             = 1
                missing_parameter          = 2
                operating_system_not_found = 3
                file_system_not_found      = 4
                OTHERS                     = 5.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDFORM.                    " get_filename
    You may find it useful.
    Regards,
    Karuna.

  • How to see the files of adf faces demo

    Hi ADF Experts,
    I am using Jdeveloper 11.1.1.7.0 version. I downloaded the rcf-dvt-demo.war for this jdev version.
    Its running fine in weblogic. I just wanted to check hjow can we see the BackingBean and other files of this application in Jdeveloper.
    Thanks
    Animesh

    Hi Animesh,
    Please follow the instructions given under "Using the integrated WebLogic Server in Oracle JDeveloper 11g" section in the below url to view the complete code package -
    "ADF Faces Components Demo Install Instructions&lt;/title&gt;&lt;meta name=&quot;Title&quot; content=&quot;ADF Faces Comp…"
    Best Regards,
    Ankit Gupta

  • Help!! I have used an external hard drive on my Macbook Pro to save photos and edit.  Now I have purchased a desktop Apple machine, and new copy of lightroom, however, I cannot see the files on the desktop using the external hard drive.

    Hi, I am wondering if someone knows if I can open/(how I see) the files I have saved in Lightroom on my Mac laptop, on my new desktop?

    You want to transfer the catalog file to the new desktop using your operating system, and open that by double-clicking on it. Then reconnect the photos to Lightroom (if necessary) by these instructions: Adobe Lightroom - Find moved or missing files and folders

  • Slow file transfer speed on OS X / Windows LAN

    I have a Mac Mini with OS X Server (Yosemite) on a network of 5 Windows 7 PCs, the server hosts FileMaker Server 13 and also some files in a shared folder.
    I notice the file transfer speed when copying a file from one PC up to the server's shared folder is around 350KB/second, is this an acceptable speed? how could I improve it?
    Thanks for your help.

    I'm having the same issues.. I recorded a bunch of video with the 4s.. now i'm copying them to my windows 7 pc with it peaking out at 900KB/sec.  My corsair thumb drive in the same port gets 5-10x this speed.  any luck getting faster speeds?

  • Hi, i purchased a 2 dvd digital set. i cant just download it straight to my ipad. they said i have to down load it to my i tunes, then can transfer to i pad. im not seeing how to click the files from my email, and get them into the i tunes acct... ugh.

    hi, i purchased a 2 dvd digital set. i cant just download it straight to my ipad. they said i have to down load it to my i tunes, then can transfer to i pad. im not seeing how to click the files from my email, and get them into the i tunes acct... ugh.
    i do not have a mac home pc. just a regular pc

    I had the same problem after I gave my old iPad to my parents and tried to install Netflix. This is what you have to do:  Open iTunes on your computer, the one you sync your iPad to. Then go to iTunes Store and search for and download Netflix app. After you download it, if your iPad is set to download new purchases it may start downloading on your iPad. If so, tap and hold to delete the app (because it is trying to install the new version on the iPad) Next step, go to the App Store on your iPad and find Netflix and it should say install since you already purchased it on the computer. Tap to install, and it will say the version is not compatible, tap to download a previous version. Click that and it will install the older version!    One more thing, if and when you sync to your computer again it will say something like " Unable to install Netflix on your iPad" Just click the box to never remind you again, because it's trying to sync the newer Netflix app to your iPad, but it doesn't work so it displays the message. The old app will remain on the ipad. Hope this helps, good luck

  • How do I see file transfer speeds?

    Hey guys, does anyone know if it's possible for me to see file transfer speeds instead of just the time remaining in Finder?

    Hi,
    In song view, go to menu > view > view options and select bit rate, file type and size.
    In preferences, you can change import settings to Apple lossless. When you use file > create new version you can now can now convert from aiff to lossless.
    Create playlist based of file type being lossless.
    Jim

  • How can I display the front panel of the dinamically loaded VI on the cliente computer, the VI dinamically loaded contains files, I want to see the files that the server machine has, in the client machine

    I can successfully view and control a VI remotly. However, the remote VI dinamically loads another VI, this VI loaded dinamically is a VI that allows open others VIs, I want to see the files that contains the server machine, in the client machine, but the front panel of the dinamic VI appears only on the server and not on the client, How can I display the fron panel with the files of the server machine of the dinamically loaded VI on the client computer?
    Attachments:
    micliente.llb ‏183 KB
    miservidor.llb ‏186 KB
    rdsubvis.llb ‏214 KB

    I down loaded your files but could use some instructions on what needs run.
    It seems that you are so close yet so far. You need to get the data on the server machine over to the client. I generally do this by doing a call by reference (on the client machine) of a VI that is served by the server. THe VI that executes on the server should pass the data you want to diplay via one of its output terminals. You can simply wire from this terminal (back on the client again) to an indicator of your choosing.
    Now theorectically, I do not think that there is anything that prevents use from getting the control refnum of the actual indicator (on the server) of the indicator that has the data, and read its "Value" using a property node. I have never tried this idea but it seems t
    hat all of the parts are there. You will need to know the name of the VI that holds the data as well as the indicator's name. You will also have to serve all VI's. This is not a good idea.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How to see the ms files attachment in outlook in iphone

    how to see the ms files attachment in outlook in iphone

    I believe JDK6 has the Desktop API which allows you to do this.
    Prior to that you can use the Runtime class. Read the HTML page that is displayed when running the example from this posting:
    http://forum.java.sun.com/thread.jspa?forumID=57&threadID=5123633

  • How can I see the file name of photographs in Lightroom mobile?

    I have photographs of product wich have there reference number as the file name. When synchronizing to my iphone/ipad I don't see the file name of the photographs any more. Is there a way to show them on my mobile devices?

    Two fingers cycles through the histogram + exif info views. One finger toggles between filling the screen or revealing the filename and adjustment controls.

  • How do I fix the slow transfer speed over USB on my 24" iMac?

    I am backing up/cloning with SuperDuper, and running Lion.  The displayed transfer speed never gets past about 20mb per second.  Painfully slow....  Any suggestions?

    Actually that's pretty good for USB. USB is slow - there is nothing you can do about it. Firewire always has been faster. Personally, I only use external Firewire drives for cloning or backing up. Even then, if it's a fresh clone, it'll take moe than an hour for 160 GB.
    So, I schedule it when I have other things to do and walk away until it's done.

  • 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 .

  • IPhone File Transfer Speeds

    I have two MacBooks and two iPhones and I'm seeing very different file transfer speeds between the two. Both have the backup option manually disabled to improve sync times.
    Setup 1: iPhone 3GS with MacBook Pro (15-inch, Late 2008) model
    Setup 2: iPhone 3G with Black Macbook (13-inch Mid 2007) model
    The time it takes to sync video between the two is drastic with the newer model copying files in a few seconds, and the older setup copying files over 5-10 minute periods.
    I have yet to swap the two iPhones on the two computers but from a technical perspective, I don't understand why one would transfer files faster than the other. Both are using USB 2.0 and I've already tried using the same cable for both. Anyone see similar behavior? Is this a facet of the older computer or older iPhone?

    As an example, a USB host on a PCI bus will send or receive the data via the PCI bus; the stack will prepare the next data in memory and receive interrupt from the host. That's what I mean, how that's implemented.

  • File transfer speed and distance from base station?

    I tested the file transfer time (outside with no obstructions) by moving a large video file between my MacBook and a computer wired to an Airport base station.   The times were the same as distance increased until the connection dropped.  Why?

    Do the calculations.
    (Although wireless qualifies more for voodoo project than science).
    500MB translates to 5.7MB/s which is near enough to 46Mbits/s
    500MB in 94sec is 42.6Mbits/s
    That is really slow for 5ghz at such close distance to the airport.
    What OS are you running? Please open the wireless diagnostics.
    About Wireless Diagnostics - Apple Support
    Run the wireless utility.
    And get the actual link speed and how well it is working.
    Then use iperf to get actual network speeds. Rather than moving a file test the link rates.
    iperf is included in Mac OS and is available via terminal.
    This post gives some clues. http://acidx.net/wordpress/2013/05/testing-a-network-connection-with-iperf/
    I think your seeing a hold up due to slow ethernet say.. 100mbit ethernet will ruin any numbers you are trying to get in tests. As well as older slow Mechanical hdd in laptops.
    But the link speed in the Utility will tell you the story.. if you link at 450Mbps which should be possible up close.. and it drops to say 200Mbps at a range of 130M you are still far faster than the rate determining step.. very likely to be a slow disk plus slow ethernet.
    Go to the performance tab.. and keep it running as you move the computer from next to the Airport to the 130M point. You should see a pretty large drop in connect speed.. but you also need to keep this running as you transfer files.. since it tends to vary greatly during a file transfer.
    For science experiments.. this is already a pretty good one.. you are trying to determine the rate determining step in a network system and why wireless is not causing the problem you expected. The use of actual diagnostic tools is great.. almost like science.
    The big spike in this graph is me changing from 2.4ghz to 5ghz.

Maybe you are looking for

  • PDF NOT OPENING IN SAFARI

    with my switch over to my new imac and mountain lion pdfs are opening in code. originally i thought it was on one website but it is on most sites BUT NOT ALL. removing adobe plug-ins from library>internet plug-ins as suggested by applecare does not h

  • Trying to find mounting bracket

    I am tring to find this metal mounting bracket so I can connect my ThinkVision monitor directly to my docking station instead of having it sit on the stand. Someone else in my office has one, so I know they exist.  Here is a picture of what it looks

  • ABAP documentation for BW

    Hello, Does anyone have some intrductory ABAP tutorials to distribute? I work with BW and will try to learn ABAP for that purpose.. Thankful for any contribution! e-mail: [email protected] Best regards, Fredrik

  • Archiving -Balance sheet GLs

    Hi , We have done the archiving with archiving object FI_document for the year 2009. But i am not able to tally the open value  as on today for the GLs which are not managed as open item ( i.e only line item based.) But for customer , vendor and Gls

  • Adobe Captivate 5 - Video won't play in web browser

    I've tried inserting it as a slide video and as a FLV file. Plays fine in the preview, but not after publication and pulling it up on website. In one version the skin is there, but inactive. In others, there's just nothing there. The progress bar con