Weird symbol in file name and images by pixel instead of size?

i my filenames i sometimes see a weird box with what looks like a script "x". is this some kind of default symbol that indicates i am using a non standard symbol in this file name? it sometimes happens after i drag and drop something say from my desktop to my laptop.
also, is there any chance of being able to see pixel size of images in a Finder window in addition to or instead of File size?
Thanks.

Some things about this.
1. Ignore the back slash in front of the space.  That's the terminal shell convention for escaping (making significant) special characters that follow the back slash (in this case a space).
2. A pathname like ~/foo/bar is another shell convention where the tilde is a shorthand for your home directory.
3. I am not convinced that the weird stuff is not there in the Finder display.  I think it just doesn't show in the Finder's desktop font.
4. I am going to use your example for the following discussion.  Extrapolate where needed.
The terminal shows a pathname like /Users/homename/Desktop/_evolute\ tutes, i.e. with some kind of garbage character(s) after tutes.
In terminal type cp followed by a space and drag that tutes file into the terminal window.  I think it will look something like this (don't hit return yet).
cp /Users/homename/Desktop/_evolute\ tutes
Now type a space and add ~/Desktop/foobar on to the end of the line.  It should now look like the following:
cp /Users/homename/Desktop/_evolute\ tutes  ~/Desktop/foobar
Hit return.  You should see a file called foobar on your desktop (unless you get an error because the shell didn't like those special characters at the end of the pathname, in which case we have to quote it, but ignore that for now and we can address that in a followup post).  All this did was copy your file to the desktop with a different name, foobar in this case.
Now I propose that the file foobar is named just that.  If you throw that in the trash, do a get info on it, or drag it back into the terminal window, it should still be just the name foobar.  Nothing else at the end of it.
If all this goes as I described, then the moral of all this is that however that original problematic file (or files) was created somehow something added those non-printable characters to the end of the name.  In some fonts it shows as best the font being used can show it.  In others they remain invisible because there is no representation in that particular font.
...on the other hand, I could just be wrong about all of this!

Similar Messages

  • How can I view information about an image, such as the file name and exposure,  on the Ipad?

    how can I view information about an image, such as the file name and exposure,  on the Ipad?

    You can't with the built-in Photos app, but there are apps such as iPhoto which allow you to see the exposure details (aperture, shutter speed, focal length, ISO). PhotoMeta also shows you that info

  • Workflow with images,file names and full captions.

    I am working on my mother's memoirs, which will include a block of photo pages.  Those pages will be laid out by a friend.  I would like to use a contct sheet of some kind as a reference to what is to be included with what caption but am discovering just how difficult PE8 Organizer is to work with.
    First I tried the obvious print contact sheet and discoverd that captions are truncated if they run wider than the image itself.
    Secondly I tried a photo book and found that large images do not automatically resize to fit the picture placeholders. Seemed to pick up full caption but I have too many pictures to manually fit.
    Third I tried a web page output but then captions can't be copy and pasted for inclusion into group caption panels!
    Then it occurred to me that even just a list of file names and captions would be sufficient ... but even that is too much for an Adobe catalog to give up!
    All I want is a reference to images and captions, ideally grouped 4 at a time per page as they will be shown in those picture pages.
    Any suggestions would be welcomed.

    I can see two ways to do what you want.
    The first one is to divide you workflow in two steps. Install the free software FastStone image resizer, which can do a batch to resize and put your caption where you want. Batch process the files in a new folder while renaming them with something like 'old name'+ 'resized'. This is to avoid duplicate names. Import them into the organizer. Create an album with all those files, and put them in the correct printing order. Select all and export 'as new files' renaming them with 'common base name', in original format. That should keep the custom order of your project.
    There are also batch renaming and resizing with the affordable Elements+ add-on, but I suppose the first solution will be easier.

  • Truly dumb question. How do I get PS to actually complete a command, eg straighten an horizon, and finalise the change. Even doing a "save as" with a new file name and reloading brings the image back, straightened, but with the skewed back ground frame st

    Truly dumb question. How do I get PS to actually complete a command, eg straighten an horizon, and finalise the change. Even doing a "save as" with a new file name and reloading brings the image back, straightened, but with the skewed back ground frame still there. Is there a "apply change" or similiar command that I simply cannot see.

    brings the image back, straightened, but with the skewed back ground frame
    PSE did what you told it to do. Choose the Straighten and crop edges or fill edges options when you use the straighten tool if you want it to do more than just straighten the contents of the image. Many people prefer the plain straighten because they'd rather crop themselves than let PSE do it.

  • Is it possible to know the file name of images loaded?

    Hi:
    I have a folder containing some images named 01_image_name.jpg, 02_image_name.jpg, 03_image_name.jpg, ... wich names I read with a PHP script. Then I loop loading each image and waiting until all are loaded to display them
    1. The PHP script reads file names and returns a string with names separated by a "|" char, then I use the split method to store them in imagesNames array and sort it
    2. I loop trough imagesNames array loading images
    3. Anytime a new image arrives I push it in imagesContainer array and check if all images are loaded to show them
    The problem is there's no guarantee they arrive in the same order they were requested. So, how I sort the imagesContainer array by file name, i.e. in the same order they are in imagesNames array?
    Thanks in advance

    if you know when a new image arrives and you can retrieve that new image file name ...
    Well, that's precisely my doubt, how can I know the file name? Is there a property/method for it?
    function loadImages() {
    for (var i:int=0; i<imagesNames.length; i++) {
    var imgLoader:Loader=new Loader;
    imgLoader.contentLoaderInfo.addEventListener(Event.COMPLETE,imgLoaded);
    imgLoader.load(new URLRequest(imgPath + imagesNames[i]));
    function imgLoaded(par:Event):void {
    trace(par.target,par.target.content,par.target.content.name);
    Output window:
    [object LoaderInfo] [object Bitmap] instance160
    [object LoaderInfo] [object Bitmap] instance159
    [object LoaderInfo] [object Bitmap] instance161    

  • In mini bridge, is it possible to view the file name and the rating at the same time?

    Hello,
    In mini bridge, is it possible to view the file name and the rating at the same time?
    Thank you.

    if you know when a new image arrives and you can retrieve that new image file name ...
    Well, that's precisely my doubt, how can I know the file name? Is there a property/method for it?
    function loadImages() {
    for (var i:int=0; i<imagesNames.length; i++) {
    var imgLoader:Loader=new Loader;
    imgLoader.contentLoaderInfo.addEventListener(Event.COMPLETE,imgLoaded);
    imgLoader.load(new URLRequest(imgPath + imagesNames[i]));
    function imgLoaded(par:Event):void {
    trace(par.target,par.target.content,par.target.content.name);
    Output window:
    [object LoaderInfo] [object Bitmap] instance160
    [object LoaderInfo] [object Bitmap] instance159
    [object LoaderInfo] [object Bitmap] instance161    

  • File name and Measuremen​t in the same table?

    Hi,
    I have written the following VI that opens up each image file from a folder and measures a certain dimension on the image. It then puts the result of the measurement in a table.
    The table has one column and N rows since I have N images in my folder. How can I modify this VI so that it puts the filename in the same table as well as the measurement?
    I want the table to look like:
    filename1 measurement1
    filename2 measurement2
    and so on.
    Currently, it just shows
    measurement1
    measurement2
    and so on.
    Here is the VI:
    Solved!
    Go to Solution.
    Attachments:
    measurement.vi ‏68 KB

    You can't use the Express Table. As the properties page says, it is for numeric data. You will have to use a little bit of actual LabVIEW to create the table. A table is just a 2D string array. So, convert the numeric to a string, build a 1D string array from the file name and numberic, and use a shift register to build a 2D array. Something like the code below.
    Message Edited by Dennis Knutson on 05-07-2009 01:43 PM
    Attachments:
    Build Table.PNG ‏9 KB

  • File names of images in IPhoto

    I have two questions. Does anyone know how to see the photo/file name of images loaded into IPhoto? Is there a setting that you can turn on to show the file name under each image?
    Secondly. While trying to find answers to the above question I did discover the export originals option which would allow me to export images into a separate folder that does list the image numbers. This is a work around but not really what I'm after.
    Doing this export I did get a folder of images with their respective file numbers attached. However, what is interesting and I'm hoping someone can answer is that many of the images that should have had my own personal image number, were actually labeled Slide 1, slide 2, etc, etc. When I originally imported these images they contained a number that looked like this 00478-22135. Does anyone know if the dash between the number may not be recognized by IPhoto which it then just labels a generic number it makes up on import? Or any other reason why it would not have accepted my original file name? I know it does accept some file names since several images with a different number format such as D223567 imported just fine and then exported with the correct original file names. Any suggestions are greatly appreciated.
    MacBook Pro Mac OS X (10.4.7)
    MacBook Pro   Mac OS X (10.4.7)  

    Jim:
    Under the View menu select "Titles" to get the file names. I don't know what you did but I just tried an import of a file titled 00478-22135.jpg and it kept the file name OK.
    When you exported the files what was the Album name and did you use the "Use Album Name" option in the export". If the Album was titled Slides then you would get new file names titled "Slide-1.jpg", etc. That may be the reason.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB file backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

  • Get the font names and image names in QXD

    Hi,
    How to get the font names and image name in Quarkxpress document file using java?.
    Is any third party packages for getting font n image names in QXD?
    thanks,
    nithya

    rtuck,
    I believe this may solve it:
    Open System Preferences and go to Accessibility. Next, select Display from the source list along the left, then check the box labelled Reduce transparency.
    It was first presented in this post #15 by TheUlser:
    https://forums.adobe.com/message/6854594#6854594

  • View file names under images?

    In iPhoto, the titles of all imported images were set to the file names and it was therefore possible to have the file names displayed under every image.
    In Photos, titles can be viewed by selecting View > Metadata > Titles, but all titles are empty on newly imported images. There seems to be an option to view the file name as a separate field, by selecting View > Metadata > Referenced file. However, this option does nothing. But when I search for a file name, the correct images show up, so Photos obviously keeps track of the file names somehow.
    So, how can I view the file names under every image, or import the file names into the titles?

    OK, thanks.
    I dug around a little and this definitely seems to be a bug in how the iPhoto library is converted to a Photos library. iPhoto didn't just display file names under the images. Rather, on import, iPhoto actually sets the image titles to the file names minus the file extensions (e.g. ".jpg"). But those titles, as well as the titles manually set in iPhoto, are not imported properly into the Photos library.
    I located the Photos library database. It's in the library package > Database > apdb > Library.apdb. The file is in SQLite format and can be browsed and edited with e.g. "sqlitebrowser" (http://sqlitebrowser.org/).* In it, I found that there is a table called RKMaster, that holds information about all original images. RKMaster has an attribute called "name" that contains all the original image titles. This is not the same as the file name, which is a separate "fileName" attribute in the same table, which in my case contains the same information as the "name" attribute, but with file extensions.
    Then there is another table, RKVersion. This table contains information about the different versions of all images and this information is the one actually being displayed when you use the application. RKVersion has attributes for "name" and "fileName" as well. In my Photos library, "name" is empty for all my newly imported images, but "fileName" has all the correct file names with file extensions. If I edit the database and insert something in the "name" attribute for an image, the name is then displayed as an image title in Photos.
    I then opened the library file from my old iPhoto library and it has a similar structure. In its RKVersion table, all the "name" attributes are filled out and they contain all the image titles I want to see. So I can conclude that during the conversion from iPhoto to Photos, the "name" attributes were simply not copied over, and that is why all my images now lack titles.
    I will try to find a way to copy this whole column from the iPhoto library into the Photos library, which should solve the problem.
    * Please be aware that editing this file may cause irreversible damage to the library. Make sure there is a backup of the whole library before digging into these files.

  • Tags, no longer displaying file names and other issues

    I upgraded to Mavericks, MacBook Air.
    I need help sorting out what is going on with Tags.
    I have a screen shot, but uploading it to this post is another problem I have run into with Mavericks.  I click on the camera icon, click on upload file, and then I get a list of greyed out files, and am unable to select any of them.  Very unmac like.
    Back to the tag issue.  The tags are listed in the open finder window.  Most of the tags I have created, when selected, will display all the files with that tag, and show the file name or icon.
    BUT, one of my tags, which has over a thousand files, will not display the file names.  What is shown are a list of blank icons, and no file names.  The preview for each file still shows as it should when a file is selected, and the file name is listed in the preview.
    A picture is worth a thousand words, so I really wish I could have uploaded the screen shot!
    In addition, some of the files, e.g. a .pdf file, will show no icon, no file name, no file size, but will open when double clicked and dispaly the file name and a greyed out addition to the file name "-Locked".  Much weirdness.
    Tags have not been working well for me.  I have used colours extensively in the past for organization and now it seems to be a huge problem converting to tags.  What a painful transition from Mountain Lion!

    With the backup completed, I followed your suggestion:
    "Go to your Finder "Go" menu hold the option key and choose Library. Then go to Preferences folder and trash these files:
    com.apple.finder.plist
    com.apple.sidebarlists.plist
    Then, restart, or log out and in again."
    The smart folders disappeared.  The original Tags named by colour are back on the list of Tags, and the problems remain unchanged.
    In the Tags I created for my file collection, call it the LotsOfFiles folder, there are no file names listed, none.
    However, when I changed the permissions on every file in the LotsOfFiles folder to Staff-Read & Write, then I was able to change, add, and delete Tags from the files.  Also, once the permissions were changed the file names appeared, after five minutes... so I edited this entry when I discovered the change.
    The files in LotsOfFiles have been collected since 1995, and have been saved to many computers and many backup systems.  They also have been used, saved, changed etc. in operating systems dating back to OS7, and almost every operating system up to 10.9.  They also are being used on different computers right now, one running OS 10.3.9. one running 10.7, and one running 10.9.  The computers all have different admin logins and info.
    But I still can't upload files to this forum!

  • Any way to keep original file name as image name for web gallery?

    Hi,
    I wonder if there is any way to keep the original file name as image name for a web gallery (instead of "picture-1.jpg)
    People often send us the thumbnails or the image from the web and we have to search forever to find the image in AP - if we could keep our original filename then this would be a second away.
    Hope somebody has an idea
    thanks

    Hi William,
    I finally had time to play - unfortunately it does
    not work the way you described above.
    I´m just exporting a set of images using the "Stock
    Black" Theme - marked name only - batched the
    filename to masterfile - but the actual picture names
    are still "picture-1.jpg" - "picture-2.jpg".
    did I miss anything? thanks
    I see what you want, you don't care about the screen name so much but want the generated file names to be the same as the version names. From earlier messages though I am not quite sure why this is a problem, since you said other people were picking the images they wanted - say Image1 and 23 and 8. That to me says those people are going through the directory using Finder or Explorer, not using the HTML.
    Is it the case you are giving people web galleries on CD? If so, then perhaps also export a "browse" directory with exported images using the version names, so that people can use the right name.
    Or perhaps it's the case that people are downloading the images from the web, and then using the downloaded file names to send you requests. I'm not sure how to fix this yet and do not know if 1.1 offers something for this.

  • Scanning a document but only offer in file names are image options

    I am trying to scan a document but my only options in the file names are image file names (.jpeg, bitmat etc...) I tried running the HP fix I found in another forum answer, downloaded and ran it, ran a test scan and saw all sorts of options including pdf. My test scan ran great, and my document scanned in as a .pdf. I then tried to scan again but again my only options were as an image file names. I restarted my PC but still the same issue. I am running windows XP.

    In the print dialog of Acrobat choose 'Form fields only'.

  • Pdf portfolio source file name and date in file details

    Is it possible to import the source file name and extension as well as the source file created date in the portfolio file details?  Need to document source to portfolio in working with 3rd parties that will only have the original source.  Need to document what was converted into pdf as not all files in a directory will successfully convert to pdf.  Sometimes need to convert 100's of files.  Manual entry is inefficient.  the file names and modified dates are displayed on the Combine Files dialog.  is there a way to capture the detail on that page?

    I don't need the detail of when the pdf was added to the portfolio.  I
    need know which dwg or jpg or word file was converted and the original
    created date of that file for control of information.
    That is impossible; sorry. For some *very specific* types of conversion to PDF the pdfx:SourceModified XMP tag will be set to show the last-modification date of the source file (for example DOCX files converted using MS Word), but there will never be a human-readable record of the source filename or its creation date unless you have manually added them as document XMP properties after conversion (this is what the "Custom Properties" dialog is for). To embed source data automatically would raise no end of privacy and security problems for customers, who most certainly do NOT want their recipients seeing details of internal documents.
    Without writing a plugin there's no access to the internal workflow of the Combine Files dialog, so you cannot use a script to read the names and dates of the files *before* conversion and store them automatically in the new PDF Portfolio's Fields array.

  • How to print the report file name and path and the last mod date

    Good morning,
    I am trying to print on the footer of the report the report file name and path as well as the report last modification date.
    Anyone would know how I can do that? I have checked the doc but found nothing.
    Thks. Philippe.

    Did you ever determine how to print report name and report last mod date?
    Thanks

Maybe you are looking for

  • Connector for MQ in CE Java EE

    Hi,    Im attempting to create a resource adapter for connection to MQ from CE 7.1 In NWDS I have created a SAP Connector project and followed what instructions I can find importing libs from file system including; 1. com.ibm.mq.jar 3. com.ibm.mqjms.

  • Spool file with comma including quotes

    Hi All, I am getting the csv file however location commas are treated as another column in file. I am expecting based on the below SQL only two columns and all the data should be in two columns though we have comma value in location string. CREATE TA

  • Sound and video problems on T500

    Hello, I have some problems with my T500. When I'me listening to music on iTunes or other programs or when I'm watching movies,  the music (or movie) is not continuous and jerk (I'me not sure it's the good word, english is not my mother language ) It

  • Moved users to new message store Unity Connection

    We recently moved users to a new messwage store on exchange. These users can no longer receive their voice mail in outlook. Everyone else can. What is the issue here? Unity Connection 8.5.1.10000-206 Exchange 2003

  • Selecting entire row into instance of jpub class gives error

    Hi. I'm using oracle 9i. I used JPublisher to create classes for my db objects, and now I want to execute: select value(u) from university_tb where u.name = 'Harvard'; where university_tb is a table of university_t. I want to have the row returned in