Searching and impotring files

Hi,
Bought an ipod last week and have music files allover my computer, when i first installed itunes it gave me the option to search and import all music files already on my pc but i had to stop the process half way through, is it possible to start it up again?
Thanks

but now when I search for a specific file all versions of the file (client approved and not approved which are in separate folders within a specific job folder) are presented as thumb nails.
If you want to search for a specific word you should use the Find command under the Edit menu and select the proper main folder and choose client approved and equals. Be sure to have also include non indexed files and including subfolders selected. Bridge needs time to index all the files so the first time you use 'include non indexed files' it may take a while.
You could choose to create keywords or labels for approved files, it makes it easier to find and select.
Also be aware that Bridge is not designed to work over a network and/or using a server so this might also causing some problems.

Similar Messages

  • What is the name of the folders which are your backup of Itunes library? I am recovering from a virus, have no workable desktop in Win XP, but can search and find files and folders. I would like to move these backup files to a new computer

    what is the name of the folders which are the backup of Itunes library? I am recovering from a virus, have no workable desktop in Win XP, but can search and find files and folders. I would like to move these backup files to a new computer, authorize it and sync with Iphone 3Gs and Ipod 5th gen.
    I

    I second the whole iTunes folder approach.
    If for some reason you have split the media folder from the library files then the media folder needs to restored to the same path it used to have while the library files can be copied into the music folder of your new profile.
    If in dobut, backup up the entire Documents and Settings folder before wiping the infected drive, but be selective about what you restore as many viruses drop active components capable of reinfecting the compuer in the temp folders and internet caches. It is much easier to backup more than you need than to discover after the fact that you no longer have access to some vital project you'd been storing in a folder on the desktop.
    tt2

  • Using Automator and Applescript to search and move files to flash drive

    I've used applescript and automator to do simple tasks like watch folders and move files and rename files, but that is about the extent. I am wondering if it is possible to set up a automator service or app that will do several things.
    When a flash drive is plugged it, it will ask for a file to be searched for, then it will search a predetermined directory for files with the word or number in them and then it will copy the found files to the mounted flash drive.
    Any help would be greatly appriciated!
    Thanks!

    As a start, you can use launchd to run a script when a volume is mounted:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
              <key>Label</key>
              <string>com.tonyt.LaunchOnVolMount</string>
              <key>ProgramArguments</key>
              <array>
                        <string>LaunchOnVolMount.sh</string>
              </array>
              <key>QueueDirectories</key>
              <array/>
              <key>StartOnMount</key>
              <true/>
              <key>WatchPaths</key>
              <array/>
    </dict>
    </plist>
    You can then have the LaunchOnVolMount.sh script perform the tasks you need.
    You can incorporate Applescript within the Bash script with osascript:
    #!/bin/bash
    answer=$( osascript -e 'tell app "System Events" to display dialog "What file do you want to search for?" default answer "" ' )
    echo $answer
    I beleive that you can also call an Applescript from launchd

  • Searching and viewing files

    The first few times I opened Bridge CS5 to search for and view files stored on a server it worked perfectly; specific pdf files were found from several hundred job folders and only the files in the folder that I named “client approved” were shown.
    I believe I may have cleared the cache because I have not been able to find the same files that I once previously found; yet the files are present on the server and have not moved. I have since “built and exported cache” for some brand folders but now when I search for a specific file all versions of the file (client approved and not approved which are in separate folders within a specific job folder) are presented as thumb nails. I would like for only the “client approved” files to be shown as thumb nails. How can I make this happen and work as it did the first few times I worked with Bridge?

    but now when I search for a specific file all versions of the file (client approved and not approved which are in separate folders within a specific job folder) are presented as thumb nails.
    If you want to search for a specific word you should use the Find command under the Edit menu and select the proper main folder and choose client approved and equals. Be sure to have also include non indexed files and including subfolders selected. Bridge needs time to index all the files so the first time you use 'include non indexed files' it may take a while.
    You could choose to create keywords or labels for approved files, it makes it easier to find and select.
    Also be aware that Bridge is not designed to work over a network and/or using a server so this might also causing some problems.

  • "SEARCHING AND SAVING FILES"

    HI ALL,
    I am required to search for a client, using their surname, first name or age and display a list of all their matching records in the text area if the results are found.
    Then i am required to save the data and load it from a file using an application and not an applet. If this information is validated then the user should be able to select the client and account from a choice list. This means that each time a client object is created an entry is added to the list of clients showing the client ID, surname and first name. When a client number is entered in the text field (or selected from the list) all accounts that are owned by the client will be displayed in a choice list. Each choice list entry for an account must show the account number and the account type.
    Basically Im unsure how to do this so I REALLY need your help.
    Here is parts of my code, if you need more verification of what im doing please feel free to email me [email protected], cause I desperately need your help.
    import java.awt.*;
    import java.applet.*;
    import java.awt.event.*;
    public class Assignment2 extends Applet
    implements ActionListener {
    private Branch Brh = new Branch ();
    private Client Clt = new Client ();
    private Account Acc = new Account ();
    private Cheque Cheq = new Cheque ();
    private EFTCard Eft = new EFTCard();
    private ClntArray ctArray = new ClntArray ();
    // create an array to hold upto ten branch objects
    private Branch branchArray[] = new Branch[10];
    // declare and initialise variable to keep count of
    // howmany branches
    private int branchCount = 0;
    // Declare variables for each type of component required for this applet
    // Buttons for client processing
    Button btnNewClient, btnUpdateClient, btnDeleteClient;
    Button btnSearchClient, btnNextClient, btnPreviousClient;
    // Buttons for account and transaction processing
    Button btnNewAccount, btnUpdateAccount, btnDeleteAccount;
    Button btnSearchAccount, btnNextAccount, btnPreviousAccount;
    Button btnNewTranx, btnPrintStatement;
    // Buttons for misc processing
    Button btnClear;
    // declare variables for checkboxes and a checkbox group
    Checkbox chequeAccount, EFTAccount;
    CheckboxGroup accountType;
    // choice list to hold branches that can be selected from
    Choice availableBranches;
    // labels and textfields for client processing
    Label clientHeading;
    Label promptSName, promptFName, promptClientPh, promptClientAge,promptClientNo;
    TextField txtSurname, txtFirstname, txtClientPh, txtClientAge, txtClientNo;
    // labels and textfields for account processing
    Label accountHeading, accountTip;
    Label promptAccNo, promptAccBalance, promptAccInterest, promptAccType;
    TextField txtAccountNo, txtAccountBalance, txtInterestRate, txtTranxAmount;
    Label promptTranxAmount, promptSelectBranch;
    // general labels and text fields
    Label header, footer;
    TextArea results;
    // panels for client processing
    Panel pTextFields, pClientButtons, pClientStuff;
    // account processing panels
    Panel pAccountFields, pAccountButtons, pAccountStuff;
    // miscelaneous panels used for formatting user interface
    Panel pTop, pCentre, pBottom, pAllTextFields;
    Panel pCheckBoxes, pBranches, pLists;
    // variable used to create output string
    String msg = "";
    /***** init() method *************************************************
    * This method will create all required objects, add them to the *
    * applet, and register interest in events on some objects through *
    * listener classes *
    public void init() {
    resize(700,590);
    setLayout(new BorderLayout(5, 5));
    // create buttons for client processing
    btnNewClient = new Button("New Client");
    btnUpdateClient = new Button("Update Client");
    btnDeleteClient = new Button("Delete Client");
    btnSearchClient = new Button("Search Clients");
    btnNextClient = new Button("Next>>");
    btnPreviousClient = new Button("<<Previous");
    // create account processing buttons
    btnNewAccount = new Button("New Acct");
    btnUpdateAccount= new Button("Update Acct");
    btnDeleteAccount = new Button("Delete Acct");
    btnSearchAccount = new Button("Search Accts");
    btnNextAccount = new Button("Next>>");
    btnPreviousAccount = new Button("<<Previous");
    btnNewTranx = new Button("Perform Transaction");
    btnPrintStatement = new Button("Print Statement");
    // button to clear the form values
    btnClear = new Button("Clear All");
    accountType = new CheckboxGroup();
    chequeAccount = new Checkbox("Cheque Account", accountType, false);
    EFTAccount = new Checkbox("EFT Account", accountType, true);
    header = new Label("Client and Account Management Information System", Label.CENTER);
    footer = new Label("");
    // create six default branch objects and add them to the branch array
    // and set counter to show howmany branches there are - assumes the
    // the appropriate constructor has been defined in the Branch class
    branchArray[0] = new Branch("Perth", "036060");
    branchArray[1] = new Branch("Fremantle", "036080");
    branchArray[2] = new Branch("Joondalup", "036989");
    branchArray[3] = new Branch("Churchlands", "036018");
    branchArray[4] = new Branch("MtLawley", "036605");
    branchArray[5] = new Branch("Booragoon", "036090");
    branchCount = 6;
    // now add the default branch names and codes to choice list
    // NOTE: you may have to change the getBranchName() and getBranchCode() methods to match
    // those you have defined in your Branch class
    availableBranches = new Choice();
    for (int indx = 0; indx < branchCount; indx++) {
    availableBranches.add(branchArray[indx].getBranchName() + " " +
    branchArray[indx].getBranchCode() );
    } // end of for loop to add branch names and codes
    // create labels and text fields required for client processing
    clientHeading = new Label("Client Processing");
    promptSName = new Label("Surname: ", Label.RIGHT);
    promptFName = new Label("First Name: ", Label.RIGHT);
    promptClientPh = new Label("Client Number: ", Label.RIGHT);
    promptClientAge = new Label("Client Age: ", Label.RIGHT);
    promptClientNo = new Label ("Client Number: ", Label.RIGHT);
    txtFirstname = new TextField(20);
    txtSurname = new TextField(20);
    txtClientPh = new TextField(18);
    txtClientAge = new TextField(3);
    txtClientNo = new TextField(15);
    // create account processing labels and text fields
    accountHeading = new Label("Bank Account Processing");
    accountTip = new Label("Client must exist before account is created");
    promptAccNo = new Label("Account Number: ", Label.RIGHT);
    promptAccBalance = new Label("Balance: ", Label.RIGHT);
    promptAccInterest = new Label("Interest Rate: ", Label.RIGHT);
    promptTranxAmount = new Label("Transaction Amount $", Label.RIGHT);
    promptAccType = new Label("Account Type: ");
    txtAccountNo = new TextField(20);
    txtAccountBalance = new TextField(20);
    txtInterestRate = new TextField(10);
    txtTranxAmount = new TextField(10);
    results = new TextArea(8, 40);
    // start adding components to applet
    add(header, BorderLayout.NORTH);
    pCentre = new Panel();
    pCentre.setLayout(new BorderLayout(5, 5));
    // set up client information panel
    pTextFields = new Panel();
    pTextFields.setLayout(new GridLayout(3, 4));
    pTextFields.add(clientHeading);
    pTextFields.add(new Canvas());
    pTextFields.add(new Canvas());
    // pTextFields.add(new Canvas());
    pTextFields.add(new Canvas());
    pTextFields.add(promptClientNo);
    pTextFields.add(txtClientNo);
    pTextFields.add(promptSName);
    pTextFields.add(txtSurname);
    pTextFields.add(promptFName);
    pTextFields.add(txtFirstname);
    // pTextFields.add(promptClientPh);
    // pTextFields.add(txtClientPh);
    pTextFields.add(promptClientAge);
    pTextFields.add(txtClientAge);
    pClientButtons = new Panel();
    pClientButtons = new Panel();
    pClientButtons.add(btnNewClient);
    pClientButtons.add(btnUpdateClient);
    pClientButtons.add(btnDeleteClient);
    pClientButtons.add(btnSearchClient);
    pClientButtons.add(btnPreviousClient);
    pClientButtons.add(btnNextClient);
    pClientStuff = new Panel();
    pClientStuff.setLayout(new GridLayout(2, 1));
    pClientStuff.add(pTextFields);
    pClientStuff.add(pClientButtons);
    // set up account and transaction information panel
    pAccountFields = new Panel();
    pAccountFields.setLayout(new GridLayout(3, 4));
    pAccountFields.add(accountHeading);
    pAccountFields.add(new Canvas());
    pAccountFields.add(new Canvas());
    pAccountFields.add(new Canvas());
    pAccountFields.add(promptAccNo);
    pAccountFields.add(txtAccountNo);
    pAccountFields.add(promptAccBalance);
    pAccountFields.add(txtAccountBalance);
    pAccountFields.add(promptAccInterest);
    pAccountFields.add(txtInterestRate);
    pAccountFields.add(promptTranxAmount);
    pAccountFields.add(txtTranxAmount);
    pAccountButtons = new Panel();
    pAccountButtons.add(btnNewAccount);
    pAccountButtons.add(btnUpdateAccount);
    pAccountButtons.add(btnDeleteAccount);
    pAccountButtons.add(btnSearchAccount);
    pAccountButtons.add(btnPreviousAccount);
    pAccountButtons.add(btnNextAccount);
    pAccountButtons.add(btnNewTranx);
    pAccountStuff = new Panel();
    pAccountStuff.setLayout(new GridLayout(2,1));
    pAccountStuff.add(pAccountFields);
    pAccountStuff.add(pAccountButtons);
    pAllTextFields = new Panel();
    pAllTextFields.setLayout(new GridLayout(2,1));
    pAllTextFields.add(pAccountStuff);
    pAllTextFields.add(pClientStuff);
    // set up the panel that will hold the checkboxes and list of branches
    pCheckBoxes = new Panel();
    pCheckBoxes.setLayout(new GridLayout(3, 1));
    pCheckBoxes.add(promptAccType);
    pCheckBoxes.add(EFTAccount);
    pCheckBoxes.add(chequeAccount);
    pBranches = new Panel();
    pBranches.setLayout(new GridLayout(3, 1));
    promptSelectBranch = new Label("Select Branch: ");
    pBranches.add(promptSelectBranch);
    pBranches.add(availableBranches);
    pLists = new Panel();
    pLists.setLayout(new GridLayout(1, 3));
    pLists.add(pCheckBoxes);
    pLists.add(pBranches);
    pLists.add(new Canvas());
    // add all the above panels to the panel that will be added to the
    // centre of the applet
    pCentre.add(pLists, BorderLayout.NORTH);
    pCentre.add(pAllTextFields, BorderLayout.CENTER);
    pCentre.add(results, BorderLayout.SOUTH);
    add(pCentre, BorderLayout.CENTER);
    //add general processing buttons to panel, then add panel to applet
    pBottom = new Panel();
    pBottom.add(btnPrintStatement);
    pBottom.add(btnClear);
    add(pBottom, BorderLayout.SOUTH);
    add(new Label(" "), BorderLayout.EAST);
    add(new Label(" "), BorderLayout.WEST);
    // add listeners for client buttons
    btnNewClient.addActionListener(this);
    btnUpdateClient.addActionListener(this);
    btnDeleteClient.addActionListener(this);
    btnSearchClient.addActionListener(this);
    btnNextClient.addActionListener(this);
    btnPreviousClient.addActionListener(this);
    btnNewAccount.addActionListener(this);
    btnUpdateAccount.addActionListener(this);
    btnDeleteAccount.addActionListener(this);
    btnSearchAccount.addActionListener(this);
    btnNewTranx.addActionListener(this);
    btnNextAccount.addActionListener(this);
    btnPreviousAccount.addActionListener(this);
    btnPrintStatement.addActionListener(this);
    btnClear.addActionListener(this);
    } //end of init method
    /***** actionPerformed() method **************************************
    * Method is called when an event occurs on any of the object that *
    * have been registered as an action listener *
    public void actionPerformed (ActionEvent e) {
    Object obj = e.getSource();
    * if new client button is clicked then *
    * create new client object *
    * read data from text fields and set the client object's values *
    * add this client object to array of client objects *
    if (obj == btnNewClient) {
    //declare variables to later check the validation of the info
    boolean cNo = false;
    boolean cSurName = false;
    boolean cFstName = false;
    boolean cAge = false;
    //must change the the age to interger to then chek validation
    //check for surname
    if (txtSurname.getText().equals ("")) {
    results.append("\n Enter Surname");
    else { cSurName = true;
    //check for firstname
    if (txtFirstname.getText().equals ("")) {
    results.append("\n Enter Name");
    else { cFstName = true;
    //check for client number
    if (txtClientNo.getText().equals ("")) {
    results.append("\nPlease Enter Correct Client Number");
    else { // cNo = true;
    //convertedInt = Integer.parseInt(stringValue);
    //mudt try n plsce this in the rite plc to be able to wrk
    int ClientLoc = ctArray.findLoc(txtClientNo.getText());
    if (ClientLoc == -1) {
    Client Clt = new Client(txtClientNo.getText(), txtFirstname.getText()
    ,txtSurname.getText(), txtClientAge.getText());
    ctArray.AddClient(Clt);
    results.setText("New client has been added to the arrary!");
    ClientLoc = ctArray.findLoc(txtClientNo.getText());
    results.append(ctArray.getClient(ClientLoc).getFirstName());
    } // end of new client button for the if
    * if new updateclient button is clicked then *
    * then do the bits required to *
    * read data from text fields and set the client new details object val *
    if (obj == btnUpdateClient) {
    int ClientLoc = ctArray.findLoc(txtClientNo.getText());
    if (ClientLocc == -1){
    results.setText(" Could Not Find Client!");
    } else {//this will shoe the client loc that the client has been updated
    display(ClientLoc);
    } //end of the else bit this is just help to show {} are in place
    } // end of if for update client
    * if new btnDeleteClient button is clicked then *
    * then do the bits required to *
    * delete the client form the array *
    if (obj == btnDeleteClient) {
    int ClientLoc = ctArray.findLoc(txtClientNo.getText());
    if (ClientLoc == -1) {
    results.setText(" Could Not Find Client!");
    } else { //start of the else if the client was found
    ctArray.remove(ClientLoc);
    results.setText("Client Deleted!");
    } //end of te elsebit for the removing of the client
    } //end of the btndeleteclient process
    * if new btnSearchClient button is clicked then *
    * then do the bits required to *
    * SearchClient the client form the array *
    if (obj == btnSearchClient) {
    int ClientLoc = ctArray.findLoc(txtClientNo.getText());
    if (ClientLoc == -1) {
    results.setText(" Could Not Find Client!");
    } else {//here is the search was good then will be able
    // to display the info of the client
    results.append("\n Customer Number: " + Clt.getClientNo());
    results.setText(" First Name: " + Clt.getFirstName());
    results.append("\n Surname: " + Clt.getSurname());
    results.append("\n Customer Age: " + Clt.getAge());
    }//end of the else bit that allows the user to see the clients details
    // in the either the textfiels or the resultds bit as it is yet to be decided
    }//end of the btnsearchclient
    * if new btnNextClient button is clicked then *
    * then do the bits required to *
    * NextClient the client form the array *
    if (obj == btnNextClient) {
    int ClientLoc = ctArray.findLoc(txtClientNo.getText());
    if (ClientLoc == -1) {
    results.setText(" Could Not Find Client!"); //need to fix it so then itll show the next client
    } else {//here is the search was good then will be
    //able to display the info of the client
    txtClientNo.setText(Clnt.getClientNo());
    txtFirstname.setText(Clnt.getFirstName());
    txtSurname.setText(Clnt.getSurname());
    txtClientAge.setText(Clnt.getAge());
    }//end of the else bit that shos that next client
    } // end of the btnnextclient
    * the new btn PreviousClient button is clicked then *
    * then do the bits required to *
    * PreviousClient the client form the array *
    if (obj == btnPreviousClient) {
    int ClientLoc = ctArray.findLoc(txtClientNo.getText());
    if (ClientLoc == -1) {
    results.setText(" Could Not Find Client!"); //need to fix it so then itll show the previous client
    } else {//here is the search was good then will be
    //able to display the info of the client
    txtClientNo.setText(Clnt.getClientNo());
    txtFirstname.setText(Clnt.getFirstName());
    txtSurname.setText(Clnt.getSurname());
    txtClientAge.setText(Clnt.getAge());
    }//end of the else bit that shows that previous client
    }//end of the btnprevious client been clikd
    * if new transaction button is clicked then *
    * then do the bits required to *
    * read data from text fields and set the transaction object val *
    if ( obj == btnNewTranx) {
    if (!txtTranxAmount.getText().equals("")) {
    double TrnAmt = Double.parseDouble(txtTranxAmount.getText());
    if (Acc instanceof Cheque) {
    Cheq.setBalance(Cheq.getBalance() + TrnAmt );
    } else if (Acc instanceof Cheque) {
    Eft.setBalance(Cheq.getBalance() + TrnAmt );
    } //end of the if it was eftcard
    } //this will close the transaction bit if the client does enter an amount
    * if display button is clicked then *
    * display values from text fields and text area *
    if (obj == btnPrintStatement) {
    results.setText(" First Name: " + Clt.getFirstName());
    results.append("\n Surname: " + Clt.getSurname());
    results.append("\n Customer Number: " + Clt.getClientNo());
    results.append("\n Customer Age: " + Clt.getAge());
    if (Acc instanceof Cheque) {
    Cheq = (Cheque) Acc;
    results.append("\n \n Account Type: " + Cheq.getAccType());
    results.append("\n Account Number: " + Cheq.getAccNo());
    results.append("\n Account Balance: " + Cheq.getBalance());
    results.append("\n Account Interest Rate: " + Cheq.getIntRate());
    results.append("\n Branch Name: " + Brh.getBranchName() + " " + Brh.getBranchCode());
    } else {
    Eft = (EFTCard) Acc;
    results.append("\n \n Account Type: " + Eft.getAccType());
    results.append("\n Account Number: " + Eft.getAccNo());
    results.append("\n Account Balance: " + Eft.getBalance());
    results.append("\n Account Interest Rate: " + Eft.getIntRate());
    results.append("\n Branch Name: " + Brh.getBranchName() + " " + Brh.getBranchCode());
    }//end of if for displaying the correct Acc type
    } // end of if for btnPrintStatement
    * if clear button is clicked then *
    * clear values from text fields and text area *
    * reset other form components to default values *
    if (obj == btnClear) {
    txtFirstname.setText("");
    txtSurname.setText("");
    txtClientPh.setText("");
    txtClientNo.setText("");
    txtClientAge.setText("");
    txtAccountNo.setText("");
    txtAccountBalance.setText("");
    txtInterestRate.setText("");
    txtTranxAmount.setText("");
    results.setText("");
    availableBranches.select(0);
    accountType.setSelectedCheckbox(EFTAccount);
    } // end of if for clear button
    } //end of actionPerformed method
    } //end of applet
    Sorry its so LONG. Thank you for your time
    Jesika

    You should really check the freejavahelp forums, I posted something for you there.

  • Compare folders and output files with same name?

    I'm trying to compare two folders and print only the excel files in folder B that have the same names as the pages files in folder A. I've tried using the completedigitalphotography "compare folders" action, but it will only output files that are of the same type, not just the same name.
    Any ideas?
    iBook G4   Mac OS X (10.4.4)  

    I tested this out on my own seat and I think it should work for you. I wrote it as a function, all you have to do is pass the root folders you want to search and the file your looking for. The function will then search that directory and all sub directories
    for that file name. you will also have to provide it a file to append to, if the file dosen't exists the function will create it. If you run into an issues let me know and the links Mike
    Laughlin posted are a great resource.
    Function Search-Files{
    Param([String[]]$Locations, $SearchFor, $AppendTo)
    Begin
    If(-Not (Test-Path $AppendTo)){New-Item $AppendTo -ItemType File -Force}
    Process
    ForEach($Location in $Locations)
    $Files = Get-ChildItem -Path $Location -Filter $SearchFor -Recurse
    ForEach($File in $Files)
    Get-Content -Path $FIles.FullName | Out-File $AppendTo -Append
    End{}
    Search-Files -Locations "\\Server1\c$\Temp", "\\Server1\c$\Test1" -SearchFor "Install.cmd" -AppendTo "C:\Temp\Search.log"

  • N95 remove search and online services

    Hi,
    Does anyone know how I can remove the search and online file sharing (my phone shows Flickr) from the home screen? I would just like to see the active standby apps, WLAN and my calendar entries.
    I have software version V 30.0.015
    Thanks

    I'm afraid it's all or nothing. The programmable selection keys, the standby icons, Share Online and the search facility are all parts of the Active Standby. To get rid of them you have to get rid of Active Standby altogether:
    Settings > General > Personalisation > Standby mode > Active standby
    Was this post helpful? If so, please click on the white "Kudos!" star below. Thank you!

  • Importing text file into search and redact window.

    I am in the search window under the search and redact tool.  I
    am trying to import a file that was originally an excel to populate the
    search multiple words window.  I read that text files can be imported.  I saved the file as a text file but it does not import.  I can import an adobe file but this gives me a list with a bunch of junk.  What am I missing?

    The dialog imports text files.
    Make sure that the file you are importing is a text file and has one word in every line.

  • I backed up my ipod during a windows backup.  how do i find those ipod files(not itunes) in the windows backup files? i've tried searching and i can't find

    i backed up my ipod during a windows backup.  how do i find those ipod files(not itunes) in the windows backup files? i've tried searching and i can't find

    so i plugged in my ipod and it asked if i wanted to backup the files before restoring it. 
    Do you mean iTunes asked if you wanted to backup files before restoring? If so the it is in the location I posted. You don't need to navigate to the backup. Once your restore your iPod it will ask if you want to restore from a backup and present you with the backups made before hand.
    To restore information from a backup, use one of the following methods after connecting your iOS device to the computer with which you normally sync:
    -Click the File menu and select Devices > Restore from Back up.
    Or
    -Open the iOS device's Summary tab. There are two ways to access this:
    -Click the device button in the upper right corner. (If viewing the iTunes Store, click the Library button in the upper right corner. The device button will then be visible.)
    -From any view in iTunes, click the View menu and select Show Sidebar. Select your iOS device in iTunes under Devices.
    -Click the Restore Backup button.

  • Search and replace strings in a file while ignoring substrings

    Hi:
    I have a java program that searches and replaces strings in a file. It makes a new copy of the file, searches for a string in the copy, replaces the string and renames the new copy to the original file, thereafter deleting the copy.
    Now searching for "abcd", for eg works fine, but searching for "Topabcd" and replacing it doesnot work because there is a match for "abcd" in a different search scenario. How can I modify the code such that if "abcd" is already searched and replaced then it should not be searched for again or rather search for "abcd" as entire string and not if its a substring of another string.
    In the below code output, all instances of "abcd" and the ones of "Topabcd" are replaced by ABCDEFG and TopABCDEF respectively, whereas according to the desired output, "abcd" should be replaced by ABCDEFG and "Topabcd" should be replaced by REPLACEMEFIRST.
    try
              String find_productstring = "abcd";
              String replacement_productstring = "ABCDEFG";
              compsXml = new FileReader(compsLoc);
              compsConfigFile = new BufferedReader(compsXml);
              File compsFile =new File("file.xml");
              File compsNewFile =new File("file1.xml");
              BufferedWriter out =new BufferedWriter(new FileWriter("file1.xml"));
              while ((compsLine = compsConfigFile.readLine()) != null)
                    new_compsLine =compsLine.replaceFirst(find_productstring, replacement_productstring);
                    out.write(new_compsLine);
                    out.write("\n");
                out.close();
                compsConfigFile.close();
                compsFile.delete();
                compsNewFile.renameTo(compsFile);
            catch (IOException e)
            //since "Topabcd" contains "abcd", which is the search above and hence the string "Topabcd" is not replaced correctly
             try
                   String find_producttopstring = "Topabcd";
                   String replacement_producttopstring = "REPLACEMEFIRST";
                   compsXml = new FileReader(compsLoc);
                   compsConfigFile = new BufferedReader(compsXml);
                   File compsFile =new File("file.xml");
                   File compsNewFile =new File("file1.xml");
                   BufferedWriter out =new BufferedWriter(new FileWriter("file1.xml"));
                   while ((compsLine = compsConfigFile.readLine()) != null)
                         new_compsLine =compsLine.replaceFirst(find_producttopstring, replacement_producttopstring);
                         out.write(new_compsLine);
                         out.write("\n");
                     out.close();
                     compsConfigFile.close();
                     compsFile.delete();
                     compsNewFile.renameTo(compsFile);
                 catch (IOException e)
            }Thanks a lot!

    Hi:
    I have a java program that searches and replaces
    strings in a file. It makes a new copy of the file,
    searches for a string in the copy, replaces the
    string and renames the new copy to the original file,
    thereafter deleting the copy.
    Now searching for "abcd", for eg works fine, but
    searching for "Topabcd" and replacing it doesnot work
    because there is a match for "abcd" in a different
    search scenario. How can I modify the code such that
    if "abcd" is already searched and replaced then it
    should not be searched for again or rather search for
    "abcd" as entire string and not if its a substring of
    another string.
    In the below code output, all instances of "abcd" and
    the ones of "Topabcd" are replaced by ABCDEFG and
    TopABCDEF respectively, whereas according to the
    desired output, "abcd" should be replaced by ABCDEFG
    and "Topabcd" should be replaced by REPLACEMEFIRST.
    try
    String find_productstring = "abcd";
    String replacement_productstring = "ABCDEFG";
    compsXml = new FileReader(compsLoc);
    compsConfigFile = new
    BufferedReader(compsXml);
    File compsFile =new File("file.xml");
    File compsNewFile =new File("file1.xml");
    BufferedWriter out =new BufferedWriter(new
    FileWriter("file1.xml"));
    while ((compsLine =
    compsConfigFile.readLine()) != null)
    new_compsLine
    =compsLine.replaceFirst(find_productstring,
    replacement_productstring);
    out.write(new_compsLine);
    out.write("\n");
    out.close();
    compsConfigFile.close();
    compsFile.delete();
    compsNewFile.renameTo(compsFile);
    catch (IOException e)
    //since "Topabcd" contains "abcd", which is
    the search above and hence the string "Topabcd" is
    not replaced correctly
    try
                   String find_producttopstring = "Topabcd";
    String replacement_producttopstring =
    topstring = "REPLACEMEFIRST";
                   compsXml = new FileReader(compsLoc);
    compsConfigFile = new
    gFile = new BufferedReader(compsXml);
                   File compsFile =new File("file.xml");
                   File compsNewFile =new File("file1.xml");
    BufferedWriter out =new BufferedWriter(new
    dWriter(new FileWriter("file1.xml"));
    while ((compsLine =
    compsLine = compsConfigFile.readLine()) != null)
    new_compsLine
    new_compsLine
    =compsLine.replaceFirst(find_producttopstring,
    replacement_producttopstring);
    out.write(new_compsLine);
    out.write("\n");
    out.close();
    compsConfigFile.close();
    compsFile.delete();
    compsNewFile.renameTo(compsFile);
                 catch (IOException e)
    Thanks a lot!I tried the matches(...) method but it doesnt seem to work.
    while ((compsLine = compsConfigFile.readLine()) != null)
    if(compsLine.matches(find_productstring))
         System.out.println("Exact match is found for abcd");
         new_compsLine =compsLine.replaceFirst(find_productstring, replacement_productstring);
    out.write(new_compsLine);
    out.write("\n");
         else
         System.out.println("Exact match is not found for abcd");
         out.write(compsLine);
         out.write("\n");

  • Bug in Multi-File Search and Replace in RH6?

    I'm using the 6.0 trial, and one thing I want to be able to
    do is to replace the variables I put in using JavaScript with the
    new feature variables in 6.0. So, I went in to multi-file search
    and replace, and searched for:
    <script
    language=JavaScript>document.write(varProduct)</script>
    I copied this code directly from a topic, and pasted it into
    the Search tool.
    I don't even care whether I can successfully copy the code
    from my new variable for use as the replacement text; I'd be happy
    if the multi-file search would simply find all occurrences of my
    original code so I don't miss any during conversion to 6.0.
    It keeps coming up as not found, and this concerns me
    greatly. Has anyone else experienced this? Is it a known bug? Does
    anyone have a workaround?
    Thanks!

    Hi robowriter
    I'm assuming you are using the wondrous little applet known
    as Multi-File Find and Replace.
    Unfortunately, this little beastie is like a cat. It
    frequently has a fussy tummy and loves to hork up furballs. Well,
    not exactly. Really what it does is fail to properly handle
    anything with a line break. So you need a tool that does do this.
    Fortunately, one exists! It is called FAR (Find And Replace). Oddly
    enough, it was also written by a fellow Microsoft Help MVP named
    Rob Chandler. (Rob lives in Australia)
    You can download a trial version of FAR from the FAR page.
    Click here to visit
    the FAR page
    Cheers... Rick

  • Attempting to upgarde itunes and I get an error message looking for "an alternate path to a folder containing 'iTunes.msi' location.  I've searched my hard drive and the file doesn't exist.  What to do?

    Attempting to upgarde itunes and I get an error message looking for "an alternate path to a folder containing 'iTunes.msi' location.  I've searched my hard drive and the file doesn't exist.  What to do?

    This worked...found on a prior discussion:
    Download the Windows Installer CleanUp utility from the following page (use one of the links under the "DOWNLOAD LOCATIONS" thingy on the Major Geeks page)...
    http://majorgeeks.com/download.php?det=4459
    From the link above (near the top of the page)....Under 'download locations'   click on 'download@majorgeeks'
    To install the utility, doubleclick the msicuu2.exe file you just downloaded and ran.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any iTunes entries and click "Remove", as per the following screenshot:
    Restart your computer.
    Re-download Itunes (latest version form Itunes website) and install.  It worked!

  • How to search for a file and copy it to somewhere else in terminal

    So basically how can I search for a file on my computer named "testingtesting.txt" and copy it to my desktop using terminal? I have very little experience in terminal, so I was going to try and use the mdfind command, then store that output as a variable, and use that variable as the source for the cp command, but I feel like there is probably a much simpler method. So basically how could I find a file named "testingtesting.txt", copy it, and paste it to my desktop using terminal.

    Is there any particular reason that you must use Terminal?
    You could just download the free EasyFind from the App Store and find the file quickly. Do whatever you wish with it.
    Good luck,
    Clinton

  • Itunes error message "file cannot be found..." I know the file is somewhere since I find it when I do a system search and it plays, but can't get itunes to see it.  Any help?

    itunes error message "file cannot be found..." I know the file is somewhere since I find it when I do a system search and it plays, but can't get itunes to see it.  Any help?

    Hello pwithero,
    The following article details the process of indicating to iTunes the correct location for the affected file.
    iTunes: Finding lost media and downloads
    http://support.apple.com/kb/TS1408
    Cheers,
    Allen

  • How can I search and sort media files to eliminate duplicates?

    I have been downloading video files off of a SanDisk media card and I haven't been deleting old files off the media disk. Each time I download the files, I have been downloading a duplicate set of old files.
    Is there a way to sort the duplicates so that I can delete them on my hard drive?

    Hi,
    It should be caused that Windows Search is not installed on the second server. See following steps to install it:
    1) Start Server Manager
    2) Click on Roles in the left navigation pane
    3) Select Add Role in the Roles Summary pane to the right
    4) Select the File Services role and click Next
    5) Select the Windows Search role service and Finish the wizard.
    Meanwhile, when you search for a file such as "data", input keyword data and click the Advanced Search at the bottom to result box. Then you can select "Data and modified" and "is after" December 1, 2010
    Shaon Shan |TechNet Subscriber Support in forum |If you have any feedback on our support, please contact [email protected]

Maybe you are looking for

  • Filter REGEX in SDO_RDF_MATCH

    Hello; I want to know how to use the regex, like or similar under the SDO_RDF_MATCH. I only see examples with simple conditions 'h < 5' etc.. Regards Isidro

  • Query Prompt Selector ... few problems in it

    Hello Folks ! I am using Query Prompt Selector and I see the component has few limitations / bugs. Can you point out if any solution pleaseeee ! 1. The list of value drop down is too wide, any idea how to short the width ? (Changing width of componen

  • Getting setpagedevice error from xerox ps printer

    cannot print any indesign (cs1, windows7) document on one of our printers...the xerox 245 pro ps. i only get an error page with error:typecheck and offending command: setpagedevice. is this a post script issue, a drive issue? i am not a techie so if

  • Administrator Password

    I installed service pack 2 on Windows XP on my Satellite pro M-30 and no I cant get to start Windows again. I have tried everything, also to repair Windows but it ask for the Administrator password. I have used the one I had but it don't work and I h

  • Is there a way to change the Alt key to the Ctrl Key?

    Is there a to access the Alt key screen functions (the quick Eyedrop, (holding Alt and click the color) and the Zoom in and Zoom out (holding alt alt and scrolling with the mouse wheel) with other key instead of alt, for instance the Ctrl key? It is