Setting *.* in file type

How do I set the 'file type' to *.* or all files instead of *.lvm?

I have a test stand where in order to greatly simply the collection of vibration data, I take six channels all at once and write out the data as ASCII for the six velocity spectra (0 - 300,000 cpm, 8000 lines of resolution), six time waveforms (from the same collection spec which results in approximately 4 seconds of data from all six channels), and six overall vibration level calculations.  Also, based on the users input, the data is saved in one of three folders, 'incoming', 'final' or 'other'.  So, the user has to first open the folder he wants and then, if multiple data files were recorded, they are also in one of those folders as 'finalvibes_1', 'finalvibes_2', etc.
My vi reads the data back.  So, the three ASCII files are  finalvibes.dat (velocity fft data), time.dat (time waveforms), and overalls.dat (the six overall numbers).  It works great, and maybe I should just forget changing anything.  I just want to take away the added step of the user having to manually click and change the filetype from *.lvm to *.*.
The more I think about it, the more I ought to be thankful that the whole thing works well and leave it alone!!!!

Similar Messages

  • Dreamweaver setting wrong file type and creator codes

    First of all, I'm running Mac OS X 10.5.2 on an Intel-based
    Mac, with Dreamweaver CS3 9.0 build 3481.
    I have a site defined where I connect to my web server via
    FTP. On my server, I just upgraded my forum software to PHPBB 3.0,
    which created a new /forums/ directory. My plan is to use
    Dreamweaver to download that new /forums/ directory to my local
    site where I can edit the files. Inside the forums folder are
    several types of files, like ".php" files, ".htm" files, ".gif"
    files, etc.
    So, upon downloading the /forums/ folder to my local machine
    by dragging and dropping it (in Dreamweaver) from the remote site
    to the local site, I noticed that Dreamweaver insists on setting
    HFS file type and creator codes for files it recognizes, based on
    the filename extension.
    I've connected to the same server using the Finder and
    Transmit, and copied the remote /forums/ folder over to my local
    machine. Neither of those copies have files with file types and
    creator codes set, meaning they aren't actually set on the remote
    files and that this is indeed something Dreamweaver is doing on the
    fly as it downloads the files.
    I'm wondering if there's any way possible to disable this
    behavior, and just download the files like they are on the server?
    (File extension only). To make matters worse, on my Intel-based
    Mac, it's not even setting the proper codes, as you can see in the
    following image:
    http://homepage.mac.com/mdouma46/images/dreamweaver.png
    Notice for the ".php" document, it's attempting to set a file
    type of 'TEXT' and a creator code of 'DmWr' (DreamWeaver's creator
    code), but because the Dreamweaver developers didn't bother to take
    into account the byte-ordering differences between PowerPC Macs and
    Intel Macs, the codes are written in reverse: 'TEXT' becomes
    'TXET', and 'DmWr' becomes 'rWmD'. (If you're going to use
    low-level routines such as FSSetCatalogInfo() to set the file types
    and creator codes, you need to call CFSwapInt32HostToBig() on the
    OSType values before doing so, to make sure they're in Big-endian
    format).
    Anyone know where the conversion information is stored?
    Thanks in advance.....

    Creator codes are totally deprecated in snow leopard. as for a workaround you can use something like this.
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #ADD8E6;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    on open these_items
    repeat with this_item in these_items
    tell application "Finder"
    set the_file to POSIX path of (this_item as alias)
    tell application "System Events"
    set default application of file (the_file) to ("Main HD:Applications:Preview.app" as alias)
    end tell
    end tell
    end repeat
    end open</pre>
    save it as an application and drop files onto it to set them to open with Preview.

  • How to set default file type for Open dialog

    Dear my friends,
    I am using "At selection-screen ON VALUE-REQUEST FOR filepath" to display open dialog and i want to set default file type for open dialog = *.txt.
    Thank your times !

    Hello,
    U can make use of this code:
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR SP_FILE.
      PERFORM SAVE_DIALOG CHANGING SP_FILE G_F_RC.
    FORM SAVE_DIALOG CHANGING PO_FILE PO_RC.
      DATA: L_VA_BOXTITLE     TYPE STRING,
            L_VA_DEFAULTFILE  TYPE STRING,
            L_VA_DEFAULTNAME  TYPE STRING,
            L_VA_DEFAULTPATH  TYPE STRING,
            L_VA_DEFAULTFULL  TYPE STRING,
            L_VA_FILTERTEXT   TYPE STRING,
            L_VA_CODE         TYPE I.
      CLEAR: PO_RC, G_F_CONF.
      L_VA_BOXTITLE   = TEXT-B01.
      L_VA_FILTERTEXT = TEXT-B02.
      IF PO_FILE IS INITIAL.
        CLEAR L_VA_DEFAULTFILE.
      ELSE.
        L_VA_DEFAULTFILE = PO_FILE.
      ENDIF.
      CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG
        EXPORTING
          WINDOW_TITLE            = L_VA_BOXTITLE
          DEFAULT_EXTENSION       = 'TXT'
          DEFAULT_FILE_NAME       = L_VA_DEFAULTFILE
          FILE_FILTER             = L_VA_FILTERTEXT
          INITIAL_DIRECTORY       = 'C:SAPWorkdir'
        CHANGING
          FILENAME                = L_VA_DEFAULTNAME
          PATH                    = L_VA_DEFAULTPATH
          FULLPATH                = L_VA_DEFAULTFULL
          USER_ACTION             = L_VA_CODE
        EXCEPTIONS
          CNTL_ERROR              = 1
          ERROR_NO_GUI            = 2
          OTHERS                  = 3.
      IF SY-SUBRC <> 0.
        PERFORM CHECK_ERRORTYPE(Z48M_MATDATA_UP) CHANGING SY-MSGTY.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                   WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        CLEAR PO_FILE.
        EXIT.
      ENDIF.
      IF L_VA_CODE NE 0.
        MESSAGE S818(3F) WITH TEXT-011.
        CLEAR: PO_FILE, PO_RC.
        EXIT.
      ELSE.
        WRITE L_VA_DEFAULTFULL TO PO_FILE.
        G_F_CONF = G_C_XFELD.
      ENDIF.
    ENDFORM.                    " save_dialog
    If useful reward.
    Vasanth

  • Setting the file type in a file field

    Hi,
    I wonder if any body can help i am new to web application
    development, I am developing an asp application in dreamweaver 8,
    A few of my pages contain a file field which has a file
    browse button at the end of the field which works fine,
    now i want to set the default file type to *.pdf, Currently
    when i run my app in IE 7, when i click on the file browse
    button, the file browse dialog box appears but the default
    file type is *.* (All files), is it possible to set the default
    file type
    to pdf so that when the file browse dialog is displayed the
    default file type is *.pdf in stead of *.*.
    Thanks
    Fifo

    The OS just watch the extension of the file.Not always. If you create a word doc but name it with
    some other extension, the OS still can determine that
    it is a word doc.On which OS?
    if i take foo.exe and i rename foo.doc so my OSwill
    try to open it as a MS Word Document.Again, garbage in, garbage out.What you mean?
    If I create a MS Word Document for a file .doc that is not a real .doc and it is not able to read, i will just lose cpu time and a lot of memory.
    So it is important to understand if I need really to open MS Word watching what is the real file type
    Either way, you're going to be doing way too much
    work (and wheel-reinventing) if you're going to build
    your own detection scheme.In the SDK there is not any file type checker, and if eventually really exists an OS like you say that is able to read inside the file, i prefer to have my own Java class that do that work in a safe and opensource way.
    However in my first post i've given a site with some java code that do what I need, i just was asking if anyone know if there is any ready-to-work java class that is better for doing this work.

  • CS4 Set default file type when placing file

    The File->Place dialog box has a default file type of 'Importable files.'  Is it possible to set the default to All files (or anything else)?  Making the change manually does not seem to stick.  I have the same general question regarding File->Open.  A search of the forums returned one hit (unanswered) in the Dreamweaver forum.
    Thank you.
    Dick Conrad

    Peter:
    Good question.  One of our editors made this request, and I believe that he works with files that lack extensions.  But controlling the default would also let us go in the other direction: quickly see only .rtf or .txt files, for example.
    Any trick would be impractical if it lived in InDesign Defaults.  All ID users get the same copy, and no two editors would want the same filter.
    Thanks for your response.
    Dick Conrad

  • Will EC support setting default file type and Open With from file menu?

    The default file types I can live without, but at least allow for Open With on right click from Windows Explorer.
    I currently have EC set in the Open With programs list, but EC does not comply for any files I opt to open it with (.css, .php, .html etc).
    EC open but not the file I choose.
    Also, even though the above use case is not ideal when if I do attempt an Open With when EC is already open, a new application session starts instead of attempting to open in the currently active app frame. It would be ideal to allow for single app frame, multiple files when Open With is employed.
    Darrell

    Hey Darrell,
    Thanks for the feedback. How Edge Code treats files is definitely something we know isn't ideal and it's something we're looking at fixing soon. There's currently a story on the Brackets backlog that adresses the Open With issue - https://trello.com/c/GhF1Bgf9
    And it based on howit ranks in that priority it looks like we could potentially take that into Edge Code over the next couple of months.
    This is definitely a feature that we think is important before we consider ourselves 1.0 so it's high priority.
    =Ryan
    [email protected]

  • Setting Quicktime File Types

    I keep checking the "default" Quicktime box under Quicktime "Preferences/File Types tab, to set my Quicktime File Types, but Quicktime is refusing to let me do this, insisting on checking all the file types and using itself to open everything. Particularly, I can't seem to get it to uncheck the "Video For Windows (AVI)" and "MPEG Media" choices, even though checking the "default" box unchecks them. However, when I re-open the Preferences window, they are always re-checked again! This is driving me C R A Z Y!!!
    I've rebooted the computer, tried resetting my file types with my other programs, and Quicktime still insists on "taking over" and rechecking these boxes each time I reopen the Preferences/File types tab.
    Can anyone help me stop Quicktime from doing this. I don't know what else to do to get Windows Media Player and my VLC Media Player back playing my video and Youtube video files! Aarrrrgggghhhh!!
    Thanx,
    Lida

    Hi,
    I feel your pain regarding Quicktime 7.4.5 not letting go of file types. I didn't want to mess with the registry or security permissions, so I downgraded to 7.2. I'm contemplating upgrading to 7.3.1, but I'll do more research. The downside to doing this is that I cannot watch iTunes videos and the security risks. Since I use iTunes for music and don't go to fringe Web sites, it doesn't hurt that much. The minimum version of Quicktime that iTunes 7.6 uses is 7.1.6, so I'll stick with 7.2 or 7.3.1 until Apple fixes this.
    There are problems with 7.4.5 in Mac OS Tiger, too. I'm using 7.2 there as well.
    Cheers!

  • How to set default file type for screen capture?

    I want to change the default from .jpg2 to .jpg when doing a screen selection
    capture (cmd-shft-4). Where is the place to do this?
    Thank you,
    todd

    Todd,
    OnyX has 10 screen shot options available in Parameters>General>Screen Capture format:
    ;~)

  • Setting file type in preferences

    I seem to be unable to have PSE 9 set the file type. When I change the preference it alwasy goes back to never. What am I doing wrong.
    Bob

    I take it you have a mac and you mean that the file extension preference keeps setting itself to Never?
    This is a known bug, caused by merely opening the Saving Files preferences in PSE 9. There are two workarounds:
    1. Just type in the extension manually, or
    2.Quit the PSE editor, then relaunch it while holding down command+shift+option. Keep holding the keys till you see a window asking if you want to delete the settings file. You do. Then never open the Saving Files preference window again.

  • Setting File type in Upload UI Element

    I want to set the file type as *.doc when the Browse option opens up in the Upload button.
    Is this achievable.

    Hi Soumya,
    Just as the upper 2 experts said,  so far we cann't achieve this in the existing edition of WD..This is not like in traditional ABAP, which we can use such as "Filter" in Dictionary-browser to restrict the file type .
    If we want to use only certain file type in WD, as far as i know, we should only using Coding to handle it..
    Best wishes.

  • Setting file type to open in WebStart Program (Opened file as parameter)

    Hi --
    I've created a Java program & installed in on my PC using Web Start. Now I'd like set all .sit files to automatically open in my program. My program expects a file as input, and I'd like the opened .sit file to be that parameter.
    I've tested this using a batch file to run the program (instead of Web Start), and that worked fine. I'm not able to get this to work with a Web Start program, though.
    I opened My Computer & went to Tools / Folder Options / File Types. I created an SIT extention, and I tried a number of things:
    1. I had Web Start place a shortcut on the desktop, and then I selected that shortcut from the list in the File Types window --> I got a "TooManyArgumentsException" when I double-clicked on the .sit file.
    2. I tried to set the File Types setting to http://myserver/myapp.jnlp. --> Windows recognized that this wasn't an executable & wouldn't let me save it.
    3. I created a shortcut to http://myserver/myapp.jnlp and pointed the File Types setting to that. --> Windows wouldn't let me save that.
    4. I clicked the Advanced button on the File Types tab, and created an open action. I tried the same three things there & got the same results.
    Is it possible to do what I'm trying to do (force .sit files to open in my Java Web Start program and send their filename into the program's main method as a parameter)? Does anyone have any pointers?
    Thanks,
    Bonnie

    This is a new feature in Java Web Start 1.5, and in the 1.5 version of the JNLP specification.
    The <association> tag in the jnlp file can be used to ask Web Start to create the fextension/mime-type asociation for ".sit" extensions so that if you click on a ".sit" file, the system will launch "javaws -open clickedfile.sit yourapp.jnlp" see:
    http://jcp.org/aboutJava/communityprocess/maintenance/jsr056/jnlp_spec.html#4756982
    http://java.sun.com/j2se/1.5.0/docs/guide/javaws/developersguide/syntax.html#information
    /Dietz

  • Configure File Type Associations dosen't work for users

    Hi EB,
    Does anyones knows how to set the File Type Associations for users ? It works for me when i'm logged in as Admin but not as a user. When logged as user it always ask to configure the file associations when i open JDev and even with JDev open it does not set it. I tried to find an article about that but couldn't find any.
    I'm using :
    winXP SP3
    JDeveloper 11g TP4
    and i've sets all rights for autentified users on the folders and subfolders of JDeveloper.
    Thanks

    I tried going on tool>preferences>File Type .... and associate projets and source and applications files with JDev check marking "open with JDev"... it didn't worked as user... it's just not saving my settings while reopening it it's never saved... at least i've been able to associate it in my Admin account then i can go back in user account and select open file with in windows, choose JDev and check mark "always open that file with that program" only after that the association is saved in JDev... but still it open the Configuration file windows at startup with the ones i already opened with JDev checked... anyway that's not a big issue ... only that i can't save those settings by the JDev environement while logged in as a user...

  • Newbie stuck - how do I change the file type of a photo I am formatting from a TIFF to a JPG?

    I am new to Aperture and struggling to figure out some of the basics, even with the tutorials.  I need to submit a photo for an art competition - the master is a TIFF and I need a JPG under 1.8 MB - how do I change the new version's file type and keep it with the master?
    Thank you in advance.

    I can't recommend the method proposed by Carolyn Samit; in fact, I recommend ignoring it.
    Aperture is large, complex, and can take some time to learn to use.  It is also quite powerful, and can handle nearly all -- or all -- common tasks you throw at it.
    I have written a very short guide to Aperture which was intended to provide some firm footing for those getting started.  I humbly suggest that you start with a quick review.
    One of the things that presents a bit of disorientation for new users is that, in practice, Aperture keeps your pictures in a kind of limbo.  There are good reasons for this -- suffice it for now to accept that you import image-format digital files into Aperture, you use Aperture to organize and optimize these as Images, and then when need a file to use outside of Aperture, you export you Image.  It is at export that you format your Image: you select the file type, the compression amount, the file name, the file size, and more.
    In your case, then, you will export your Version, and set the file type to TIFF (recommended above JGP whenever quality is paramount). There is no way to know the file size in bytes prior to creating it.  Start with a full-size TIFF and, if necessary, knock it down by percentage until the exported file is less than 1.8 MB.
    There is no reason to attempt to keep this file with the Image in Aperture.  Send it on its way.  Any time you need another file from your Image, you can create it fresh via "File→Export→Version".
    HTH.  If it doesn't, ask more. 
    Message was edited by: Kirby Krieger -- expanded a bit.

  • Media file type, how to pick player IN BROWSER LINKS ??

    I hit an mp3 link in Safari, it opens a new tab to play it using what I think is a version of iTunes (it has a 30-sec button on the front?). Same in Firefox, though I get a window with Quicktime instead (big Q before playing).
    *How on earth do I get the mp3 to play in an EXTERNAL player, preferably Realplayer?* So I don't leave the webpage where the mp3 link is.
    ...in Windows, you could select the media player of you choice and setup the file associations to go with each one under a "media types" options panel or suchlike. Though on my Mac I tried this by opening "Get Info" for a different saved mp3 on my machine, selecting "open with" > Realplayer > Change All, and it works for all ones stored ON MAC. However in Safari and Firefox, I hit an mp3 in a webpage and it does NOT open in Realplayer (just plays in the browser, so I can't read the rest of the page the file was on)??
    How do I set the file-type media files play with in browser windows?
    aaagh, it's soooo annoyong?!?!

    I think you miss my issue.
    I already KNOW I can download the mp3 then play it in Realplayer. But how do I get it to just open the mp3 and play straight into RP (or any other EXTERNAL player outside of the browser if RP can't be used for some reason) WITHOUT downloading the file to Downloads??
    I just want to click the link in the middle of the webpage, eg.
    *Blah blah blah blah, and here is my track samples:*
    anysongsample1.mp3
    anysongsample2.mp3
    anysongsample3.mp3
    anysongsample4.mp3
    anysongsample5.mp3
    anysongsample6.mp3
    *Blah blah blah blah*
    *Blah blah blah blah*
    *Blah blah blah blahBlah blah blah blah*
    *Blah blah blah blahBlah blah blah blahBlah blah blah blahvBlah blah blah blahBlah blah blah blahBlah blah blah blah*
    *Blah blah blah blahvBlah blah blah blahv*
    *Blah blah blah blahvv*
    ...if I have hundreds of tracks to go through, I don't want to dl them, just play without dl-ing them. I could do this easily in Windows, so how Mac??

  • File saved as .5 file type with CS5, How to Open in CS5

    I've been working on a certificate and i saved it without looking at the file type. For some reason it set the file type to (.5). What is that? Is there any way I can open it again in CS5? Is there a file converter I could use. I just need to basically open the file agian in CS5 so I can continue to edit the certificate. I have tried opening the file with CS5 and CS6 and I get this message:
    "Could not complete your request because it is not the right kind of document."
    Thanks!

    That's the problem I saved it in Photoshop CS5 and It wont let me open it in that. The message:
    "Could not complete your request because it is not the right kind of document."
    Pops up when i try to open it with Photoshop.

Maybe you are looking for

  • Transport control program tp ended with error code 0200

    Dear All while doing export import in IDES server i found following error An error occurred when executing a tp command.   Command: EXPORT IDEKT01066 cli   Return code: 0200   Error text: "ERROR:   Request: The function terminates. pl revert....

  • Best approach to convert HD camcorder footage to blue-ray (and archive)

    I have a Canon Vixia HV30 camcorder that I have used to take HD footage.  I would like to archive the tapes' raw footage (for backup purposes) and also burn a blue-ray for each tape.  Prior to the Canon (and switching to Macs) I had been using Studio

  • How does one salvage data off of a water damaged iPhone 5s?

    It was submerged for more than 5 seconds and I have lost all hope of it to work properly again. All I would like to do is copy data off of the main memory such as music and photos onto my computer. It can still turn on but it operates very oddly. I p

  • What's this 'Zoom' feature in Safari?

    I was wondering what exactly do you do with this 'Zoom' feature in Safari 3.1.1. When I hit 'Zoom' the window just resizes. But I don't think anything gets zoomed in. So, what's this feature for? How to get this thing working?

  • Publishing Videos and Flash PDFs

    How to publish a PDF with videos and flash within the file?