Template problem - Can't adjust file path in conditional comments

Hi everyone,
I've used the template feature in dreamweaver to create a
site. The site contains conditional comments to feed a separate
stylesheet to internet explorer browsers. The css files are stored
in a css directory that sits in the main site directory. Some of
the web pages are located in the main site folder and others are
nested within subdirectories. Since all pages in the site need to
reference the css file located in the css directory, the file path
in the conditional comments within the template will have to be
different depending on where the subpages exist. I tried putting
the conditional comments within an editable region in the template
so I could change the file path as needed in the pages themselves
but because dreamweaver adds template comments like this:
<!-- InstanceBeginEditable name="head" -->
<!--[if lt IE 7]>
<link href="../css/win_ie.css" rel="stylesheet"
type="text/css" />
<![endif]-->
<!-- InstanceEndEditable -->
...the browser isn't rendering the code.
Can someone tell me how I can get around this problem?
Appreciate any help.

Make your links root relative. Links within Conditional
comments will not
be managed by Dreamweaver ever, since it sees them as HTML
comments.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"gwhPoster" <[email protected]> wrote in
message
news:ftqe1p$qpj$[email protected]..
> Hi everyone,
>
> I've used the template feature in dreamweaver to create
a site. The site
> contains conditional comments to feed a separate
stylesheet to internet
> explorer browsers. The css files are stored in a css
directory that sits
> in the
> main site directory. Some of the web pages are located
in the main site
> folder
> and others are nested within subdirectories. Since all
pages in the site
> need
> to reference the css file located in the css directory,
the file path in
> the
> conditional comments within the template will have to be
different
> depending on
> where the subpages exist. I tried putting the
conditional comments within
> an
> editable region in the template so I could change the
file path as needed
> in
> the pages themselves but because dreamweaver adds
template comments like
> this:
>
> <!-- InstanceBeginEditable name="head" -->
> <!--[if lt IE 7]>
> <link href="../css/win_ie.css" rel="stylesheet"
type="text/css" />
> <![endif]-->
> <!-- InstanceEndEditable -->
>
> ...the browser isn't rendering the code.
>
> Can someone tell me how I can get around this problem?
>
> Appreciate any help.
>
>
>

Similar Messages

  • Template Problem, Can't Bring In Image

    I've been revising my site with DW CS4. I made top area of my template editable. But I am unable to place an image in the top left corner of this newly editable area on the template or on the page it's based on. http://www.deborahdavisdesign.com/photography02.html
    Did I make the area for type only? How can I change that if I did. Any help greatly appreciated. Thank you.
    Using Mac G5 OS10.5.8

    Make your links root relative. Links within Conditional
    comments will not
    be managed by Dreamweaver ever, since it sees them as HTML
    comments.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "gwhPoster" <[email protected]> wrote in
    message
    news:ftqe1p$qpj$[email protected]..
    > Hi everyone,
    >
    > I've used the template feature in dreamweaver to create
    a site. The site
    > contains conditional comments to feed a separate
    stylesheet to internet
    > explorer browsers. The css files are stored in a css
    directory that sits
    > in the
    > main site directory. Some of the web pages are located
    in the main site
    > folder
    > and others are nested within subdirectories. Since all
    pages in the site
    > need
    > to reference the css file located in the css directory,
    the file path in
    > the
    > conditional comments within the template will have to be
    different
    > depending on
    > where the subpages exist. I tried putting the
    conditional comments within
    > an
    > editable region in the template so I could change the
    file path as needed
    > in
    > the pages themselves but because dreamweaver adds
    template comments like
    > this:
    >
    > <!-- InstanceBeginEditable name="head" -->
    > <!--[if lt IE 7]>
    > <link href="../css/win_ie.css" rel="stylesheet"
    type="text/css" />
    > <![endif]-->
    > <!-- InstanceEndEditable -->
    >
    > ...the browser isn't rendering the code.
    >
    > Can someone tell me how I can get around this problem?
    >
    > Appreciate any help.
    >
    >
    >

  • Problem with the log file path on the Data Logging Control Veristand

    Hello everyone,
    My problem is that I use a computer as a gateway on the network. It is connected to PXI in Real Time. I have another computer connected to the gateway to read the given PXI. I am unable to record on my local hard drive using the Data Logging Control VeriStand on the second computer. However, it can save me on the hard disk on the network. Moreover, I have no problem to record if the computer is a gateway.
    Regards,
    Kamal Bouamran

    For simplicity, let's call the computer running Veristand Computer A and the gateway computer Computer B.
    So, just to clarify, you're running the Veristand workspace on Computer A, which is connected to your network and the RT PXI (on which the system definition file is deployed) through a gateway, Computer B. With this setup, you can't use a data logging control to save a file to Computer A's hard drive. However, you are (from the workspace running on Computer A) able to save a file to Computer B's disk or to another drive elsewhere on your network. Is that all correct?
    What happens when you try to configure the control to log to computer A's disk? Do you get an error (and if so, what error)? Does the file path default to a different location?
    Also, what version of Veristand are you using? What version of Windows are you PCs running?
    Regards,

  • Mozilla takes out path of file - Problem! - need full file path for Upload

    There are pages on my site that process the uploading and storing of files (images) from the client's computer, and while IE leaves the full path of the file (like C:\myphotos\jpeg\example.jpg), Mozilla only passes the name of the file (like example.jpg), which is no good! I need to have the full path of the image file in order for it to work.
    How do I fix this issue?
    Here is a snippet of my servlet code, within the code I commented where the problem occurs...halting my servlet from continuing to process...but only in Mozilla.
    List items = upload.parseRequest(request); // Create a list of all uploaded files.                    
    Iterator it = items.iterator(); // Create an iterator to iterate through the list.                                                                                                         
    while(it.hasNext()) {                                             
         FileItem item = (FileItem)it.next();
            File f = new File(item.getName()); // Create a FileItem object to access the file.
            //THE STATEMENT BELOW HALTS THE REST OF THE SERVLET FROM PROCESSING
            //BECAUSE THE FILE PATH IS INCOMPLETE
         FileInputStream fs = new FileInputStream(f);
    //...Any input is appreciated,
    Love2Java

    BalusC wrote:
    According to your post history you've done webapps for more than 2 years. More than enough time to understand how HTTP works and so on. You even had ever posted a topic related to uploading files. Seriously, I am highly surprised.I am a self taught programmer, and yes, I have been learning code, working on my project, for quite some time, but I am not an 'expert' in ALL areas of development/programming, so excuse me if I 'lack' certain knowledge in certain areas. I'm also running/testing on a local machine, obviously, so, like I said in my last post, I didn't realize that that was the ONLY reason IE worked with my code for uploading.
    Now getting back to the topic of my post, if we could....I just want to get this problem I'm having fixed asap, so I can continue working on my project. If you will kindly continue to help me, I naturally would appreciate it.
    The download page for Apache has been fixed, and I downloaded the commons.io package, the latest. I added the .jar to the appropriate directories, and to my classpath. I must be missing something. I compiled a program and the compilation error says "cannot resolve symbol" on FileFilterUtils. What am I missing or not 'seeing'?

  • ITunes can't find file path

    A year ago I moved my iTunes Library (iTunes Music Folder) to a second internal drive following Kim Komando's instructions and all went well with no problems. I called the second drive M and created a folder called "My Music 2" where I put the iTune files.
    Yesterday I reformated and reinstalled Windows XP and then copied "My Documents" back to the drive but in the restore process it deleted the folder called "My Music 2" on my second drive. I reinstalled iTunes and while all my music files are there inside iTunes including the Playlists, iTunes cannot find the file paths.
    What steps do I need to follow so all the files will play, and if it's not too complicated a process I wouldn't mind putting the files back on my second drive? Is there a simple way to do all this?

    My itunes file is messed up and wont work file path not found but it wont let me uninstall so i can fix.  Plus it cant fine bonjour.msi or quicktime.msi
    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
    To install the utility, doubleclick the msicuu2.exe file you downloaded.
    Now run the utility ("Start > All Programs > Windows Install Clean Up"). In the list of programs that appears in CleanUp, select any Bonjour entries and click "Remove", as per the following screenshot:
    Next, select any iTunes entries and click "Remove", as per the following screenshot:
    Next, select any QuickTime entries and click "Remove", as per the following screenshot:
    Quit out of CleanUp, restart the PC and try an iTunes install. Does it go through properly? If so, does iTunes launch properly now?

  • SMB-problem: can see/manage files, but cannot open from Windows 8.1

    I have some files shares on a  Mavericks server (clean install, including OSX Server). I can connect and see the shared files from my Windows clients (both 7 and 8.1). I can even create files, rename them, etc. From Windows 7 i can also open and edit them. So far, so good!
    From Windows 8.1 however, opening does not work: simple text-files and pdf's don't open at all (server cannot execute instruction/file already open), office documents can only be opened in read-only mode.
    In the System log (on OSX Server) are a lot of lines like: smbd[714]: File system does not support 0x0 time attributes (or does not support 0x400000, file attrs).
    Using Windows Power Shell, I figured out that there is a SMB2.1 connection between Windows and OS X, which seems
    to be correct. It appears that OS X judges that Windows is using one or more wrong parameters in an SMB-system call.
    I had lots of SMB-problems using Mountain Lion (Snow Leopard server was fine). I don't want to force my Windows machine to use SMB1 (for all shares) using the commands found in http://support.microsoft.com/kb/2696547 (I didn't try yet).
    Any help would be appreciated.

    So I have the exact same issues. I actually called Microsoft Support and they tried a bunch of different things. They even tried disabling SMB 2 and 3 on my Windows 8.1, but then I was unable to connect to my OS X 10.9.1 Server share point at all anymore!
    Here is what I found out. When I start up from my 10.6.8 Server backup on my Macmini Server, and then mapped the network drive on letter G on Windows 8.1 Pro client machine to that very same share point -  worked like a charm. I can read , write and such all fines on that share. All is well. Leaving the Windows 8.1 client alone, on the macmini server I selected the upgraded 10.9.1 Server volume and restarted the Macmini Server. After restart, guess what, I was able to perfectly access the files from Windows 8.1 on the OS X share point which of course was still mapped as drive G on 8.1 from earlier.
    Now here comes the kicker. I went ahead and restarted Windows 8.1 and then everything went haywire! I opened the Windows 8.1 desktop and brought up My Computer. I saw that the mapped drive G is no longer connected (red X). I went ahead and double clicked it and then Windows Explorer simply hug itself and wouldn't come back. I had to force quit explorer and ended up ultimately restarting Windows. After restart I went ahead and disconnected the mapped network drive (G), and then re-mapped it. I authenticated with the very same username and password as before. This time I am able to see all the files once again, but can't open or work with any of them. It is super jinxed. In my opinion there is a severe bug in Apples SMB 2 or smbx or whatever they call it. Why couldn't thy just leave it alone and pay a licensing fee and use Samba? It's just so stupid!!!!
    Apple, you must fix this problem. I will tell the server tech that I have been working with the very same thing. They should have never release 10.9. It was premature and not ready for prime time. It's good to know that there is a work around however. It is super teadious, and spastic, but hey, at least I get it to work. Either it has something to do with authentication, or the way OS X 10.9 responds when mapping a network drive on windows 8.1 pro? No clue.
    Apple does not pay me to Q&A their software. This stuff should simply work! I am ****** off and have wasted now over 3 weeks of my precious time banging my head against the wall with Apple stuff.
    Come one guys, get your stuff straightened out.  thanks.

  • Can't Remove File Path from my Finder Toolbar

    My brother put file path on my computer by going into the Terminal app. and typing something like: killa apps
    But I don't like it, so I want it gone please help.

    Try this...
    In terminal type
    defaults write com.apple.finder _FXShowPosixPathInTitle -bool NO
    charlie

  • Can a full file path be used to open a sql database connection?

    I have a requirement to open an unattached sql server database file with a given path. Can this be done?
    This would be similar to opening a Jet database using the path as the Data Source.  For example, the path might be "C:\MyFolder\MyDatabase.mdf".  I need to put the path in the connection string and open the database.  It would look
    something like the following.
    Provider=SQLOLEDB;Data Source=C:\MyFlolder\MyDatabase.mdf;Itegrated Security=SSPI;
    Rob E.

    I don't think its possible with unattached file.
    http://www.connectionstrings.com/sql-server-2008/
    --Prashanth

  • Adobe Photoshop CC problem: can't open file

    Hi!
    We've got a project in animation by using only photoshop. I decided to use adobe photoshop cc because it's what I have.
    I have made my first scene that is 3d. It was saved as a psb with 261 mb used.
    This morning, I should be continuing the project but I could not open it anymore.
    Could you please help me with this problem? I need a solution as soon as possible. Plaease give time to reply. Thank you.

    Nobody can know anything. You have not provided any system info, details about the file, screenshots, other technical details. That aside, you should simply get used to the thought that the file may be damaged beyond repair and instead of waiting for magic to happen simply start over and make sure you actually save multiple versions and backups.
    Mylenium

  • Probleme avec le log file path de Data Logging Control de Veristand

    Bonjour à tous,
    Mon problème est que j'utilise un ordinateur comme passerelle sur le réseau. Cette dernière est connecté au PXI pour acquisitionner en Real Time. J'ai un autre ordinateur connecté à la passerelle pour lire les donnés du PXI. Je n'arrive pas en enregistrer sur mon disque dur local en utilisant le Data logging Control de Veristand sur le deuxième ordinateur. Cependant, il peut m'enregistrer sur le disque dur  se trouvant sur le réseau. De plus, je n'ai pas de problème à enregistrer si l'ordinateur est une passerelle.
    Cordialement,
    Kamal Bouamran

    Apologies for Google translate...
    Am I correct in assuming that you have a Logging Control connected to a remote gateway running on another computer and you want to access the log file on your local computer?
    Excuses pour Google Translate ...
    Ai-je raison de supposer que vous avez un Log Control relié à une Gateway distante exécutée sur un autre ordinateur et que vous voulez accéder au fichier journal sur votre ordinateur local ?

  • Ever wanted to organize by file path in itunes? Now you can...

    I've always hated how itunes doesn't let you order by file path. It's really an overt ommission intended to get people to abandon their folder structures and have itunes take control. Anyways I've held off since I've built up a good system which works for me and I hoped that maybe one day it would get patched into it. Well it didn't look like they'd ever put it in so I started looking around for alternatives and I found one which works.
    It's a script I modified from one of the sample scirpts that come with the iTunes COM SDK, it was pretty easy and it works great!
    Just highlight the code, save it to a textfile, rename the textfile extention from .txt to .js and then run. It'll seem like it isn't doing anything but it is and you'll see it if you enable the comments collumn in itunes. You can also check the task manager to see if Wscript.exe is running which the windows script host. It takes a while but eventually it'll finish the whole library and pop a msg saying that it's done. Here it is:
    var ITTrackKindFile = 1;
    var iTunesApp = WScript.CreateObject("iTunes.Application");
    var mainLibrary = iTunesApp.LibraryPlaylist;
    var tracks = mainLibrary.Tracks;
    var numTracks = tracks.Count;
    var i;
    while (numTracks != 0)
    var currTrack = tracks.Item(numTracks);
    // is this a file track?
    if (currTrack.Kind == ITTrackKindFile)
    currTrack.Comment = currTrack.Location;
    numTracks--;
    WScript.Echo("Location to comments done!");

    Katrina S. wrote:
    I think there is a script that can put the file path in the Comments field, but that's as good as it gets with itunes.
    Here's one I wrote recently...
    http://samsoft.org.uk/iTunes/scripts.asp#KeywordsToComments
    tt2

  • How can I make Spotlight show the file path

    How can I make Spotlight show the file path in the Spotlight menu for selected file?

    Via Finder certainly, but not in the menu.  You can view the file path in the Spotlight search results display by pressing the ⌘ key (while hovering over a file in the results), though.  The path will display at the bottom of the Quick Look output, or cycle through that location.

  • Problem about file path?

    hello,i want to ask two questions.
    1.In java which method can show current file path and like the method of CWD in VC.
    2.Whether or not java program support virtual path.if true,please tell me how to express virtual path.
    File f = new File("../aaa/test.html");
    "../aaa/test.html" is right?

    to get the current path, you could do this:
    File f = new File ("dummy"); //creates in current directory
    return f.getPath();

  • -36 errors, can't copy files in finder or backup to tape drive

    Does anyone know what causes -36 errors and how we can eliminate them? We need to backup our files, but have been unable to do so due to -36 I/O errors in Retrospect. Files on which this error is reported by Retrospect will not copy in the finder, either. I think our hard drive may be bad. How can we recover our files if they cannot be backed-up or copied?
    We recently purchased a tape drive for backup, an Exabyte VXA-2 FireWire Tape Drive. We are using VXA-2 V23 (230m) 80GB/160/GB Data Cartridges. I have verified that this drive is supported by Retrospect and that we have the correct tape cartridge. We are backing up one partition of a hard drive that is divided into two partitions. One is the start-up partition, the other is a partition on which we store customer files. We are backing up the partition that stores customer files. The tape drive is attached to and backing up a Macintosh G3 that was recently upgraded from system 9 to OS X 10.3.9 (Panther). The hard drive was not re-formatted before OS X was installed. I have downloaded updates and updated our Retrospect to the latest Retrospect version 6.1.126. I keep getting read errors when trying to backup the customer files partition, although I have ran every good repair program I know of to that partition — TechTool, Disk Warrior and Disk Utility. The tests all say the drive is OK. The only test I have not done recently is a surface scan, as this is an over-night procedure, but plan to do it this evening. A surface scan was done at the beginning of January, but we have continued to have problems. Yesterday morning I ran Disk Utility and it verified that the partition was okay.
    I am fairly certain the problem is not with the tape drive, as a test backup up of some of the problem customer files to a file backup on the startup drive also produced many -36 errors. Also the tape drive worked on another Mac with no -36 errors.
    The following is an excerpt from the log of last night's backup when the program was backing up (this is a very small portion of the whole log, there was a very long list of files it reported read errors on) Following this excerpt is also an excerpt of errors reported while the program was trying to verify the backup:
    ∆ Retrospect version 6.1.126
    automatically launched at 2/20/2006 7:00 PM
    + Retrospect Driver Update, version 6.1.3.101
    + Normal backup using Files Volume M,W,F BU at 2/20/2006 7:00 PM
    To backup set Files Volume M,W,F Set…
    - 2/20/2006 7:00:20 PM: Copying Files Volume…
    Can't read file “•T+•Files Volume”, error -36 (i/o error, bad media?), path: “Files Volume/•T+•Files Volume”.
    Can't read file “•T+•Files Volume(1)”, error -36 (i/o error, bad media?), path: “Files Volume/•T+•Files Volume(1)”.
    Can't read file “•T+•Files Volume(2)”, error -36 (i/o error, bad media?), path: “Files Volume/•T+•Files Volume(2)”.
    Can't read file “BALANCE PLUS AGREEMENT2.p65”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/Balance Plus Account Agreements/BALANCE PLUS AGREEMENT2.p65”.
    Can't read file “Balance Plus Agreements”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/Balance Plus Account Agreements/Balance Plus Agreements”.
    Can't read file “BALANCE PLUS.p65”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/Balance Plus Account Agreements/BALANCE PLUS.p65”.
    Can't read file “2000/#2(U)”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/cdcguide/2000/#2(U)”.
    Can't read file “New Accounts-CSB Final.PMD”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/New Accounts Brochures 10-05/New Accounts-CSB Final.PMD”.
    Can't read file “Pacesetter Ad.tiff”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/Pacesetter Bank/Pacesetter Hometown Financing/Pacesetter Ad.tiff”.
    Can't read file “SUMMERTIME.p65”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/Summertime/SUMMERTIME.p65”.
    Can't read file “RiverFest Comcast1.EPS”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/ Customer Logos & Art/Adelphia/Comcast Logos & Art/RiverFest Comcast1.EPS”.
    Can't read file “CHS logo converted to Photoshop”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/ Customer Logos & Art/CHS Logo-Various forms/CHS logo converted to Photoshop”.
    Can't read file “CHS logo adjusted/Photoshop.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/ Customer Logos & Art/CHS Logo-Various forms/Adjusted by Karen/CHS logo adjusted/Photoshop.eps”.
    Can't read file “FWOLO~13.EPS”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/ Customer Logos & Art/FWO logos/FWO Logos Various Formats/EPS/FWOLO~13.EPS”.
    Can't read file “wellnotype.bmp”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/ Customer Logos & Art/well logo for MGH/wellnotype.bmp”.
    Can't read file “spencer logo bw.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/spencer new logo/spencer logo bw.eps”.
    Can't read file “spencer logo.TIF”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/spencer new logo/spencer logo.TIF”.
    Can't read file “DOLCO 900 Master BC 10up old”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Bill Cooke/Bill Cooke-Misc/Dolco Packaging (Bill Cooke)/DOLCO Business Cards/DOLCO BCs/Dolco BCs 10up/DOLCO 900 Master BC 10up old”.
    Can't read file “accutech logo color sep.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Accutech Systems/accutech logo color sep.eps”.
    Can't read file “Kerr 1 backer.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Ball & Kerr coupons/Coupons converted to EPS/Kerr 1 backer.eps”.
    Can't read file “LNT price labels.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Jar Toppers / Gift Promo/email to discount labels/LNT price labels.eps”.
    Can't read file “A-09.DOT”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/SPD Books / Benefits/OBSOLETE - VERY OLD/alltrista policy book '99/A-09.DOT”.
    Can't read file “A-14.DOT”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/SPD Books / Benefits/OBSOLETE - VERY OLD/alltrista policy book '99/A-14.DOT”.
    Can't read file “B-21.DOT”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/SPD Books / Benefits/OBSOLETE - VERY OLD/alltrista policy book '99/B-21.DOT”.
    Can't read file “B-35.DOT”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/SPD Books / Benefits/OBSOLETE - VERY OLD/alltrista policy book '99/B-35.DOT”.
    Can't read file “Visor Install fix.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett Booklets/Visor Installation Booklet/Visor Install fix.doc”.
    Can't read file “Visor Program (SD- 1030) B.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett Booklets/Visor Programming Booklet/Visor Program (SD- 1030) B.doc”.
    Can't read file “BlueConnect_16pgInstall.qxp”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett books 1.05/ELITE FORMS/BlueConnect_16pgInstall.qxp”.
    Can't read file “BlueConnect_28pgUserREV.qxp”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett books 1.05/ELITE FORMS/BlueConnect_28pgUserREV.qxp”.
    Can't read file “BlueConnect Installation Instructions 2.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett books 1.05/ELITE FORMS/ORIG FILES/BlueConnect Installation Instructions 2.doc”.
    Can't read file “BlueConnect Installation Instructions rev 10-07-05.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett books 1.05/ELITE FORMS/ORIG FILES/BlueConnect Installation Instructions rev 10-07-05.doc”.
    Can't read file “BlueConnectInstall16pg.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett books 1.05/ELITE FORMS/ORIG FILES/BlueConnectInstall16pg.doc”.
    Can't read file “CONSUMER USERS MANUA1.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett books 1.05/ELITE FORMS/ORIG FILES/CONSUMER USERS MANUA1.doc”.
    Can't read file “BlueConnect Reg Card.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett Registration Cards/BC 203 BlueConnect Reg/BlueConnect Reg Card.doc”.
    Can't read file “Living Will insert p1.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Cemeteries (Futura Group)/Inserts + Circulars/Cresthaven Living Will Insert 1/06/Living Will insert p1.eps”.
    Can't read file “Living Will insert p2.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Cemeteries (Futura Group)/Inserts + Circulars/Cresthaven Living Will Insert 1/06/Living Will insert p2.eps”.
    Can't read file “Elm Ridge 4-c vets Page_1.tiff”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Cemeteries (Futura Group)/Inserts + Circulars/Elm Ridge Valor Hill/Elm Ridge 4-c vets Page_1.tiff”.
    Can't read file “Elm Ridge 4-c vets Page_2.tiff”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Cemeteries (Futura Group)/Inserts + Circulars/Elm Ridge Valor Hill/Elm Ridge 4-c vets Page_2.tiff”.
    Can't read file “Reply card APv.1 (Vets).eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Cemeteries (Futura Group)/Mailers & Promo/Acacia / Rose Hills mailers/PDFs Converted to art/Reply card APv.1 (Vets).eps”.
    Can't read file “FinancialPolicyBroch.pub”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/CIO - Central Indiana Ortho/FinancialPolicyBroch.pub”.
    Can't read file “CIO logo color sep.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/CIO - Central Indiana Ortho/Bus Cards / Appt Cards/CIO Logos/Art/CIO logo color sep.eps”.
    Can't read file “FCC Letterhead Indiana.bmp”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/FCC (formerly Jaytec)/Letterheads/Envelopes/Memo/FCC Letterhead Indiana.bmp”.
    Can't read file “habitat envelope.p65”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Habitat for Humanity/habitat envelope.p65”.
    Can't read file “Page 2.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/In Touch Dining (Table Talk)/Platter Chatter - Don Halls/Fix in Quark then print to EPS/Page 2.eps”.
    Can't read file “brochure”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/My Hair Broker/brochure”.
    Can't read file “brochure-1”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/My Hair Broker/brochure-1”.
    Can't read file “brochure”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/My Hair Broker/My Hair Broker recovered files/brochure”.
    Can't read file “GIFTBOX.epsbitmap”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/CHARLES/MISC FILES/GIFTBOX.epsbitmap”.
    Can't read file “ASC LetterHeadFinal.EPS”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Clayton/Accutech/original art (emailed)/ASC LetterHeadFinal.EPS”.
    Can't read file “TSC 104 and 111.pdf”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Clayton/Shelbourne Clinic forms/Fixed Files/TSC 104 and 111.pdf”.
    Can't read file “TSC 116 Initial Note.pdf”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Clayton/Shelbourne Clinic forms/Fixed Files/TSC 116 Initial Note.pdf”.
    Can't read file “sptslogo screen sep.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Clayton/Sports Physical Therapy (SPTS)/logos & art/sptslogo screen sep.eps”.
    Can't read file “sptslogo spot sep cool gray.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Clayton/Sports Physical Therapy (SPTS)/logos & art/sptslogo spot sep cool gray.eps”.
    Can't read file “A Stout BCs 12 up all names”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/A Stout Furniture & Bedding/Business Cards/A Stout BCs 12 up all names”.
    Can't read file “bifold on grstrosprep2.qxd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Cntrl Ind Gastr/Old Files (backup)/03DET0609 (CGIC Prep 4)/bifold on grstrosprep2.qxd”.
    Can't read file “MAP_DUO.tif”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Cntrl Ind Gastr/Old Files (backup)/04DET0076 (CGIC Prep 1)/Pictures/MAP_DUO.tif”.
    Can't read file “bifold on grstrosprep2.qxd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Cntrl Ind Gastr/Use Current Files on PC!!/Central Ind Gastro Brochures/03DET0609 (CGIC Prep 4)/bifold on grstrosprep2.qxd”.
    Can't read file “Beth Business Card.2”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/Art/Beth Business Card.2”.
    Can't read file “frankfort map gray.tif”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/Art/frankfort map gray.tif”.
    Can't read file “lafayette map.tif”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/Art/lafayette map.tif”.
    Can't read file “white county gray.tif”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/Art/white county gray.tif”.
    Can't read file “Hoosier Lottery HL-ARC.pmd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Hoosier Lottery/Age Restriction Cards 2005/Hoosier Lottery HL-ARC.pmd”.
    Can't read file “HCI_card2.tiff”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Hunter Construction Inc./HCI_card2.tiff”.
    Can't read file “IOH 016 steroid epideral inject”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/IOH - Indy Ortho Hospital/IOH 016 steroid epideral inject”.
    Can't read file “IOHLOGO.TIF”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/IOH - Indy Ortho Hospital/Indiana Ortho Hospital logos/logo file from customer/IOHLOGO.TIF”.
    Can't read file “OIFI 610 Reg Env Fishers.pmd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Ortho Indy/Envelopes/OIFI 610 Reg Env Fishers.pmd”.
    Can't read file “ORTHO 542 Memo master stock 9up”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Ortho Indy/ORTHO forms/ORTHO 542 Memo master stock 9up”.
    Can't read file “Ortho 542 memo NEW master.pmd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Ortho Indy/ORTHO forms/Ortho 542 memo NEW master.pmd”.
    Can't read file “SESC 042 Local Discharge.pmd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Ortho Indy/SESC Southeast Surgery Center/SESC 042 Local Discharge.pmd”.
    Can't read file “Richmond Baking from scan.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Richmond Baking/Richmond Baking from scan.eps”.
    Can't read file “RPL 300C 4-02.p65”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Richmond Power & Light/RPL 300C 4-02.p65”.
    Can't read file “RPL lighter.pmd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Richmond Power & Light/RPL lighter.pmd”.
    Can't read file “Burlington BLUE.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Unified Group Services/Burlington Motor Carriers/Burlington BLUE.eps”.
    Can't read file “Burlington RED.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Unified Group Services/Burlington Motor Carriers/Burlington RED.eps”.
    Can't read file “WW-SUMMER EVENT Postcard.p65”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Wilson Wines/WW-SUMMER EVENT Postcard.p65”.
    Can't read file “OSBORNS.TIF”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Debbie/Albany EMS/AEMS spaghetti poster/OSBORNS.TIF”.
    Can't read file “BCH 7019 Physicians Orders”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Debbie/Blackford Community Hospital/BCH forms/BCH 7019 Physicians Orders”.
    Can't read file “BCH 7066 Outcomes Walk Test”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Debbie/Blackford Community Hospital/BCH forms/BCH 7066 Outcomes Walk Test”.
    EXCERPT FROM LOG WHEN TRYING TO VERIFY BACKUP:
    2/20/2006 10:51:12 PM: Comparing Files Volume…
    Can't read file “CS Booklet Acknow Form.pmd”, error -36 (i/o error, bad media?), path: “Files Volume/AAAA/CS Booklet Acknow Form.pmd”.
    File “BV Layout First Quarter.pmd”: miscompare at data offset 221,055, path: “Files Volume/Customer files/Bill Morris/BV Layout First Quarter.pmd”.
    Can't read file “E FUNDS TRANSFER AGREE.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/E FUNDS TRANSFER AGREE.doc”.
    Can't read file “BALANCE PLUS AGREEMENT2”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/Balance Plus Account Agreements/BALANCE PLUS AGREEMENT2”.
    Can't read file “Blackford Golf Club.p65”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/Blackford Golf Club/Blackford Golf Club.p65”.
    Can't read file “INVESTMENT BROCHURE 7-04.PMD”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/Investment Brochure/INVESTMENT BROCHURE 7-04.PMD”.
    Can't read file “Pacesetter Stmt-Hartford 04 old”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/Pacesetter Bank/Hartford City/Pacesetter Stmt-Hartford 04 old”.
    Can't read file “TELEBANKING.P65”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Bill Morris/Pacesetter Tele-Banking/TELEBANKING.P65”.
    Can't read file “ *chs FHC logos (USE ME)”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/ Customer Logos & Art/CHS Logo-Various forms/ *chs FHC logos (USE ME)”.
    Can't read file “FWOLOG~D.EPS”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/ Customer Logos & Art/FWO logos/FWO Logos Various Formats/EPS/FWOLOG~D.EPS”.
    Can't read file “FWOLO~18.EPS”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/ Customer Logos & Art/FWO logos/FWO Logos Various Formats/EPS/FWOLO~18.EPS”.
    Can't read file “Jiont Replacement Logo.bmp”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/ Customer Logos & Art/logos/Jiont Replacement Logo.bmp”.
    File “SV Name 1 line 8x40p.tif”: miscompare at data offset 994,239, path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/ Customer Logos & Art/St. Vincent Scans/Logos/SV Name 1 line 8x40p.tif”.
    Can't read file “SV-birds to side, no addr.tiff”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/ Customer Logos & Art/St. Vincent Scans/Logos/SV-birds to side, no addr.tiff”.
    Can't read file “Spencer logo bw.bmp”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/spencer new logo/Spencer logo bw.bmp”.
    Can't read file “spencer printing”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Customer Logos/Art --> Keep Me!/spencer new logo/spencer printing”.
    File “Appt Cards No Logo 10-up”: miscompare at data offset 94,208, path: “Files Volume/Customer files/Elite/Bill Cooke/Bill Cooke-BMA/Appointment Cards/Appt Cards No Logo 10-up”.
    File “BMA 202,BMA 2114 10up Musselman”: miscompare at data offset 52,622, path: “Files Volume/Customer files/Elite/Bill Cooke/Bill Cooke-BMA/Appointment Cards/BMA 202,BMA 2114 10up Musselman”.
    File “BMA Non-Security RX Pads”: miscompare at data offset 81,922, path: “Files Volume/Customer files/Elite/Bill Cooke/Bill Cooke-BMA/RX Pads/White Scripts, Non-Sec, Horiz/BMA Non-Security RX Pads”.
    File “BMA 2150 White Script-Singleton”: miscompare at data offset 606,218, path: “Files Volume/Customer files/Elite/Bill Cooke/Bill Cooke-BMA/RX Pads/White Scripts, Non-Sec, Verticl/BMA 2150 White Script-Singleton”.
    File “BMA 2170 White Script-C Frazier”: miscompare at data offset 512,002, path: “Files Volume/Customer files/Elite/Bill Cooke/Bill Cooke-BMA/RX Pads/White Scripts, Non-Sec, Verticl/BMA 2170 White Script-C Frazier”.
    File “BMA 2186 White Script-Laur”: miscompare at data offset 577,586, path: “Files Volume/Customer files/Elite/Bill Cooke/Bill Cooke-BMA/RX Pads/White Scripts, Non-Sec, Verticl/BMA 2186 White Script-Laur”.
    Can't read file “DOLCO BC Ramos/Hernandez”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Bill Cooke/Bill Cooke-Misc/Dolco Packaging (Bill Cooke)/DOLCO Business Cards/DOLCO BCs/Dolco BCs 10up/DOLCO BC Ramos/Hernandez”.
    Can't read file “accutech ACT 201 Letterhead”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Accutech Systems/accutech ACT 201 Letterhead”.
    Can't read file “Allied rent no more Postcard”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Allied Home Mortgage/Rent No More postcard/Allied rent no more Postcard”.
    Can't read file “coupon grouping copy.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Ball & Kerr coupons/Alltrista 3 Fair Coupon/Fair coupon/Art/coupon grouping copy.eps”.
    Can't read file “Kerr 1.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Ball & Kerr coupons/Coupons converted to EPS/Kerr 1.eps”.
    Can't read file “Kerr 3 backer.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Ball & Kerr coupons/Coupons converted to EPS/Kerr 3 backer.eps”.
    Can't read file “Kerr 3.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Ball & Kerr coupons/Coupons converted to EPS/Kerr 3.eps”.
    Can't read file “Kerr 5 backer.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Ball & Kerr coupons/Coupons converted to EPS/Kerr 5 backer.eps”.
    Can't read file “Kerr 5 blue backer.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Ball & Kerr coupons/Coupons converted to EPS/Kerr 5 blue backer.eps”.
    Can't read file “Kerr 5 blue.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Ball & Kerr coupons/Coupons converted to EPS/Kerr 5 blue.eps”.
    Can't read file “Kerr 5.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Ball & Kerr coupons/Coupons converted to EPS/Kerr 5.eps”.
    Can't read file “JAR 402 P&C Env. Corporate”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Letterheads & Envelopes/Envelopes/JAR 402 P&C Env. Corporate”.
    Can't read file “Elite Presentation Cover”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/Misc/Elite Presentation Cover”.
    File “Consumer DCRA (3)”: miscompare at data offset 13,874, path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/SPD Books / Benefits/JARDEN Benefit Choices/Consumer Manufacturing Cloquet/(we don't print these sections)/Consumer DCRA (3)”.
    Can't read file “A-06.DOT”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Alltrista / Jarden/SPD Books / Benefits/OBSOLETE - VERY OLD/alltrista policy book '99/A-06.DOT”.
    Can't read file “Visor Program fix.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett Booklets/Visor Programming Booklet/Visor Program fix.doc”.
    Can't read file “BC User Manual rev 10-07-05.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett books 1.05/ELITE FORMS/ORIG FILES/BC User Manual rev 10-07-05.doc”.
    Can't read file “BC User Manual rev 10-24-05.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett books 1.05/ELITE FORMS/ORIG FILES/BC User Manual rev 10-24-05.doc”.
    Can't read file “Homelink WARRANTY.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bartlett Corp./Bartlett Registration Cards/BC 202 Home Link Reg/Homelink WARRANTY.doc”.
    Can't read file “Open House Card 2 up back”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Bill Frazier Mobile Homes/Open House Card 2 up back”.
    Can't read file “Elite's presort permit 228.p65”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Cemeteries (Futura Group)/Mailers & Promo/Elite's presort permit 228.p65”.
    File “GAM 100 Gyn Assoc Chg Slip”: miscompare at data offset 30,334, path: “Files Volume/Customer files/Elite/Brad/CHARGE SLIPS/GAM 100 Gyn Assoc Chg Slip”.
    Can't read file “CIO BC Amy Myers Train.pmd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/CIO - Central Indiana Ortho/Bus Cards / Appt Cards/Individuals' BCs/CIO BC Amy Myers Train.pmd”.
    Can't read file “CIO 281 Medical Release Form”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/CIO - Central Indiana Ortho/CIO Forms/CIO 281 Medical Release Form”.
    Can't read file “CIO 106 P & OT newest.pdf”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/CIO - Central Indiana Ortho/CIO Forms/CIO 106/CIO 106 P & OT newest.pdf”.
    Can't read file “CIO COLOR TABS 3 BANK”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/CIO - Central Indiana Ortho/Misc/CIO COLOR TABS/CIO COLOR TABS 3 BANK”.
    Can't read file “Cisco multi-ch 2-color.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Comcast/Flyers/Digital / Internet Flyers/6x9 69.95 Limited-time offer/Cisco multi-ch 2-color.eps”.
    Can't read file “Z4935.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Comcast/Race for Cure ad/Z4935.eps”.
    File “Comcast Rates Multi 6up”: miscompare at data offset 2,510,558, path: “Files Volume/Customer files/Elite/Brad/Comcast/Rate Cards & Channel Line-ups/ Comcast Rates & Lineups 2006/ trash before next run/Comcast Rates Multi 6up”.
    Can't read file “Comcast Samples Digi Channels-5”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Comcast/Rate Cards & Channel Line-ups/ Comcast Rates & Lineups 2006/ trash before next run/Comcast Samples Digi Channels-5”.
    Can't read file “FCC Bus Card logo.bmp”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/FCC (formerly Jaytec)/Business Cards/FCC Bus Card logo.bmp”.
    File “FGC 200 PRAYER CHAIN”: miscompare at data offset 110,530, path: “Files Volume/Customer files/Elite/Brad/Four Square Church/FGC 200 PRAYER CHAIN”.
    Can't read file “Icon◊”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/In Touch Dining (Table Talk)/Icon◊”.
    Can't read file “Customer Service Record partial”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Marcum Racing/Customer Service Record partial”.
    Can't read file “PE 400 #10 Window Envelope”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Peerless Electric/PE 400 #10 Window Envelope”.
    Can't read file “spartech.doc”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Brad/Spartech/spartech logos/spartech.doc”.
    Can't read file “neb_Logo.bmp”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Clayton/Northeast Bank/neb_Logo.bmp”.
    Can't read file “logo1web.tif”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Clayton/Shelbourne Clinic forms/logo1web.tif”.
    Can't read file “TSC 200 RX Pad”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Clayton/Shelbourne Clinic forms/Fixed Files/TSC 200 RX Pad”.
    Can't read file “TSC 104 and 111.pdf”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Clayton/Shelbourne Clinic forms 2/04/TSC 104 and 111.pdf”.
    Can't read file “TSC 105 General Progress.pdf”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Clayton/Shelbourne Clinic forms 2/04/TSC 105 General Progress.pdf”.
    Can't read file “sptslogo spot sep.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Clayton/Sports Physical Therapy (SPTS)/logos & art/sptslogo spot sep.eps”.
    Can't read file “A Stout BCs 10 up all names”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/A Stout Furniture & Bedding/Business Cards/A Stout BCs 10 up all names”.
    Can't read file “A Stout BCs 12 up Sales”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/A Stout Furniture & Bedding/Business Cards/A Stout BCs 12 up Sales”.
    Can't read file “A Stout BCs 12 up template”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/A Stout Furniture & Bedding/Business Cards/A Stout BCs 12 up template”.
    Can't read file “AERCO Bryant 8-09-05.pmd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/AERCO/AHC Bryant New Equip Line/AERCO Bryant 8-09-05.pmd”.
    Can't read file “6HR_DRINK.tif”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Cntrl Ind Gastr/Old Files (backup)/03DET0609 (CGIC Prep 4)/Pictures/6HR_DRINK.tif”.
    Can't read file “reprint-colonos prep2 fix.qxd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Cntrl Ind Gastr/Old Files (backup)/04DET0076 (CGIC Prep 1)/reprint-colonos prep2 fix.qxd”.
    Can't read file “6HR_DRINK.tif”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Cntrl Ind Gastr/Use Current Files on PC!!/Central Ind Gastro Brochures/03DET0609 (CGIC Prep 4)/Pictures/6HR_DRINK.tif”.
    Can't read file “6HR_FOOD.tif”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Cntrl Ind Gastr/Use Current Files on PC!!/Central Ind Gastro Brochures/03DET0609 (CGIC Prep 4)/Pictures/6HR_FOOD.tif”.
    Can't read file “reprint-colonos prep2 fix.qxd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Cntrl Ind Gastr/Use Current Files on PC!!/Central Ind Gastro Brochures/04DET0076 (CGIC Prep 1)/reprint-colonos prep2 fix.qxd”.
    Can't read file “MAP_DUO.tif”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Cntrl Ind Gastr/Use Current Files on PC!!/Central Ind Gastro Brochures/04DET0076 (CGIC Prep 1)/Pictures/MAP_DUO.tif”.
    Can't read file “Beth Business Card.1”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/Art/Beth Business Card.1”.
    Can't read file “Lafayette_Logo.tif”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/Art/Lafayette_Logo.tif”.
    Can't read file “ECG 302 (partial)”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/ECG Forms/ECG 302 (partial)”.
    Can't read file “ECG 532 Surgery Chart Bond LH”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/ECG Forms/ECG 532 Surgery Chart Bond LH”.
    Can't read file “carrick.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/Memo Pads/ECG 506 From Desk Of/carrick.eps”.
    Can't read file “ECG 506 note pad Steph Carrick”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/Memo Pads/ECG 506 From Desk Of/ECG 506 note pad Steph Carrick”.
    Can't read file “Confetti Canopy3.tif”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/Refer A Friend LVC Card/Confetti Canopy3.tif”.
    Can't read file “ECG RX 03 B Cyclogel/Isopto”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/RX Pads/ECG RX 03 B Cyclogel/Isopto”.
    Can't read file “ECG RX 03 Cyclogel/Homatropine”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/RX Pads/ECG RX 03 Cyclogel/Homatropine”.
    Can't read file “ECG RX 13 Eye Center Group Sec.”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/RX Pads/ECG RX 13 Eye Center Group Sec.”.
    Can't read file “ECG RX-17 Ocuflox 11/02”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Eye Center/RX Pads/ECG RX 17/ECG RX-17 Ocuflox 11/02”.
    Can't read file “Hoosier Lottery HL-ARC 8up.pmd”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Hoosier Lottery/Age Restriction Cards 2005/Hoosier Lottery HL-ARC 8up.pmd”.
    Can't read file “oibcards3.eps”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/IOH - Indy Ortho Hospital/Indiana Ortho Hospital logos/oibcards3.eps”.
    File “calendarVickersFinal.p65”: miscompare at data offset 2,002,278, path: “Files Volume/Customer files/Elite/Dave/Neff Engineering/Neff Engineering Other/calendarVickersFinal.p65”.
    File “Norfleet BC Jason 10up”: miscompare at data offset 1,760,878, path: “Files Volume/Customer files/Elite/Dave/norfleet BC/Norfleet BC Jason 10up”.
    File “BCs-New-PM6.5”: miscompare at data offset 2,111,727, path: “Files Volume/Customer files/Elite/Dave/Ortho Indy/Business Cards/BCs-New-PM6.5”.
    Can't read file “OIK Miller Only”, error -36 (i/o error, bad media?), path: “Files Volume/Customer files/Elite/Dave/Ortho Indy/Business Cards/BCs-all old ones/OIK/OIK Miller Only”.
    The only suggestion I have come across is to copy the files to another drive, but this is impossible because the problem files cannot be copied. If anyone has any other suggestion for fixing this, I would appreciate any input. Thanks.
    Mac G3 Blue & White 300 mhz   Mac OS X (10.3.9)   Original hard drive replaced with a 120 GB Maxtor 6Y120P0

    Tech Tool, Disk Warrior, and Disk Utility all work to make sure the directory is Okay. They do not read every block.
    I think you should do the surface scan you spoke of. What program do you use for this?
    If you cannot copy a file in the Finder without an I/O error, the file is damaged or the drive had bad blocks.
    Be sure you also downloaded the drivers module when you updated retrospect.

  • How to get the current FILE PATH?

    I want to get the File Path on my Java Programming, which class / method can get a File Path on the windows?
    thanks!

    I want to get the current working directory(e.g.
    c:\Tomcat5.0\webapps\)
    If this is a web application you're talking about and you want the directory where that application is installed, that's almost certainly not the CWD. It might be one of the context or whatever variables that's available to servlets. Look in the servlet API and see what's there.

Maybe you are looking for

  • Can't connect to database or Database Home Page (after installation)

    sorry that i have to make another thread for this problem, but i didnt found an equal problem to mine. after installing oracleXE 10, i get an error message in my firefox, if want to start 127.0.0.1:8080/apex. i have win xp pro. in command line i trye

  • External hard drive not recognized... help please.

    okay, well here is the story: my iBook G4 had its stock 30gb hard drive in it and it was running extremely low on space. so i figured i didn't want to carry around an external hard drive, therefore i would buy an internal hard drive an install it. so

  • Ichat video preview not working in FCP

    I am attempting to work with a client utilizing the iChat Theater preview in Final Cut Pro. His Mobile.Me address is in my buddy list. I initiate the preview in FCP and it says that I need to invite a buddy, yet when the chat box pops up and I attemp

  • Issue with slideshow size and buttons.

    I am having issues with the spry image slideshow  with filmstrip.   I can not figure out why the buttons disappeared.  When I was installing the slideshow to the site I am pretty sure I only changed the size so that it would fit the page.  Once I got

  • Can OC4J ru on JDK1.6?

    Hello, We are using oc4j_extended_101340. In the README.txt I see that it runs on JDK 1.5. We also ran into problems on Linux when we ran into an error. In our application we have code which runs faster on JDK 1.6 How can we make OC4J run on Linux on