DPT-S1 Feature Add Request: File Size (bytes) Sorting and Display in Documents Lists

Document Lists view should include option to sort by and display file Size (bytes), as in all other file tools.
That would permit discovery of duplicate files with different names, and trimming out the largest files to save space.
Thanks!

Anyone reading this? Agreeing with me?

Similar Messages

  • DPT-S1 Feature Add Request: Browser to Support "file://" Protocol

    The DPT-S1 can already display image files such as *.jpg and *.gif, and text files such as *.txt, ... and who knows what else because those capabilities are needed to display *.htm(l) files anyhow.
    So, it is already possible to view image and text files on the machine ... so long as they are accessed via the  "http://"  protocol.
    If you just add  "file://"  protocol support to the browser, then it could read image, text, and other files stored on the machine itself ... a big step forward from the current limitation to  *.pdf  for local files.
    To be clear: the browser ALREADY can display image and text files, and of course the machine's file system can store them.  So why not just add  "file://"  support, so we can use the browser to view a much wider variety of files on the machine itself.
    Thanks!

    Hi, at this time NM only can scan inside your local subnet, but that sounds like a good idea.
    My Cisco Network Magic Configuration:
    Router: D-Link WBR-2310 A1 FW:1.04, connected to Comcast High Speed Internet
    Desktop, iMac: NM is on the Windows Partition, using Boot camp to access Windows, Windows 7 Pro 32-bit RTM, Broadcom Wireless N Card, McAfee Personal Firewall 2009,
    Mac Partition of the iMac is using Mac OS X 10.6.1 Snow Leopard
    Laptop: Windows XP Pro SP3, Intel PRO/Wireless 2200BG, McAfee Personal Firewall 2008
    Please note that though I am a beta tester for Network Magic, I am not a employee of Linksys/Cisco and am volunteering my time here to help other NM users.

  • Problem exporting '.txt' file size 23 KB and '.zip' file size 4 MB

    I am using Apex 3.0 version screen to upload '.txt' file and '.zip' file containing images.
    I can successfully export '.txt' file and '.zip' file containing images as long as '.txt' file size is < 23 KB and '.zip' file size < 4 MB from database table 'TBL_upload_file' to the OS directory on the server.
    processing of Larger files (sizes 35 KB and 6 MB) produce following Error Message.
    ‘ORA-21560: argument 2 is null, invalid or out of range’ error.
    Here is my code:
    I am using following code to export Documents from database table 'TBL_upload_file' to the OS directory on the server.
    create or replace procedure "PROC_LOAD_FILES_TO_FLDR_BYTES"
    (pchr_text_file IN VARCHAR2,
    pchr_zip_file IN VARCHAR2)
    is
    lzipfile varchar(100);
    lzipname varchar(100);
    sseq varchar(1000);
    ldocname varchar(100);
    lfile varchar(100);
    -- loaddoc (p_file in number) as
    l_file UTL_FILE.FILE_TYPE;
    l_buffer RAW(32000);
    l_amount NUMBER := 32000;
    l_pos NUMBER := 1;
    l_blob BLOB;
    l_blob_len NUMBER;
    l_file_name varchar(200);
    l_doc_name varchar(200);
    a_file_name varchar (200);
    end_pos NUMBER;
    begin
    -- Get LOB locator
    SELECT blob_content,doc_name
    INTO l_blob,l_file_name
    FROM tbl_upload_file
    WHERE DOC_NAME = pchr_text_file;
    --get length of blob
    l_blob_len := DBMS_LOB.getlength(l_blob);
    -- save blob length to determine end position
    end_pos:= l_blob_len;
    -- Open the destination file.
    -- l_file := UTL_FILE.fopen('BLOBS','MyImage.gif','w', 32767);
    l_file := UTL_FILE.fopen('BLOBS',l_file_name,'WB', 32760); --use write byte option supported in 10G
    -- if small enough for a single write
    IF l_blob_len < 32760 THEN
    utl_file.put_raw(l_file,l_blob);
    utl_file.fflush(l_file);
    ELSE -- write in pieces
    -- Read chunks of the BLOB and write them to the file
    -- until complete.
    WHILE l_pos < l_blob_len LOOP
    DBMS_LOB.read(l_blob, l_amount, l_pos, l_buffer);
    UTL_FILE.put_raw(l_file, l_buffer);
    utl_file.fflush(l_file); --flush pending data and write to the file
    -- set the start position for the next cut
    l_pos := l_pos + l_amount;
    -- set the end position if less than 32000 bytes, here end_pos captures length of the document
    end_pos := end_pos - l_amount;
    IF end_pos < 32000 THEN
    l_amount := end_pos;
    END IF;
    END LOOP;
    END IF;
    --- zip file
    -- Get LOB locator to locate zip file
    SELECT blob_content,doc_name
    INTO l_blob,l_doc_name
    FROM tbl_upload_file
    WHERE DOC_NAME = pchr_zip_file;
    l_blob_len := DBMS_LOB.getlength(l_blob);
    -- save blob length to determine end position
    end_pos:= l_blob_len;
    -- Open the destination file.
    -- l_file := UTL_FILE.fopen('BLOBS','MyImage.gif','w', 32767);
    l_file := UTL_FILE.fopen('BLOBS',l_doc_name,'WB', 32760); --use write byte option supported in 10G
    -- if small enough for a single write
    IF l_blob_len < 32760 THEN
    utl_file.put_raw(l_file,l_blob);
    utl_file.fflush(l_file); --flush out pending data to the file
    ELSE -- write in pieces
    -- Read chunks of the BLOB and write them to the file
    -- until complete.
    l_pos:=1;
    WHILE l_pos < l_blob_len LOOP
    DBMS_LOB.read(l_blob, l_amount, l_pos, l_buffer);
    UTL_FILE.put_raw(l_file, l_buffer);
    UTL_FILE.fflush(l_file); --flush pending data and write to the file
    l_pos := l_pos + l_amount;
    -- set the end position if less than 32000 bytes, here end_pos contains length of the document
    end_pos := end_pos - l_amount;
    IF end_pos < 32000 THEN
    l_amount := end_pos;
    END IF;
    END LOOP;
    END IF;
    -- Close the file.
    IF UTL_FILE.is_open(l_file) THEN
    UTL_FILE.fclose(l_file);
    END IF;
    exception
    WHEN NO_DATA_FOUND THEN
    RAISE_APPLICATION_ERROR(-20214,'Screen fields cannot be blank, Proc_Load_Files_To_Fldr_BYTES.');
    WHEN TOO_MANY_ROWS THEN
    RAISE_APPLICATION_ERROR(-20215,'More than one record exist in the tbl_load_file table, Proc_Load_Files_To_Fldr_BYTES.');
    WHEN OTHERS THEN
    -- Close the file if something goes wrong.
    IF UTL_FILE.is_open(l_file) THEN
    UTL_FILE.fclose(l_file);
    END IF;
    RAISE_APPLICATION_ERROR(-20216,'Some other errors occurred, Proc_Load_Files_To_Fldr_BYTES.');
    end;
    I am new to the Oracle.
    Any help to modify this scipt and resolve this problem will be greatly appreciated.
    Thank you.

    Ask this question in the Apex forums. See Oracle Application Express (APEX)
    Regards Nigel

  • What is theoptimal file size for stills, and dpi?

    what is theoptimal file size for stills, and dpi?

    In video dpi is not relevent. What counts in video is pixels. In FCP most recommendations I have seen is to size your stills so they have no more than 3 times the pixels in your project aspect ratio. For example if your project is 1280x720 then stills should be no more than 3 times the 1280x720. This allows you to crop the stills and still have good resolution. If no cropping is anticipated then they could be the same size as your project.

  • Trying to download update to CoPilot Live and CoPilot GPS with maps.  files sizes are large and taking hours to download on wireless connection.  How can I download App updates and new maps while connected to PC and Itunes through hard wire internet link?

    Trying to download update to CoPilot Live and CoPilot GPS with maps.  Files sizes are large and taking hours to download on wireless connection.  How can I download updates and new maps while connected to PC and Itunes through hard wire internet link?

    I'm on my iPad, so I don't know if this is the page with an actual download. I don't see a button, but assume that is because I  am on an iPad. It is in the DL section of Apple downloads.
    http://support.apple.com/kb/DL1708

  • Is there a way to open Excell file from the server and display in the UI and save it back on to the

    Hello there,
    Is there a way to open Excell file from the server and display in the UI and save it back on to the server? (like showing xell file as a datagrid - add rows, columns etc.)

    Hi Mike,
    Welcome you to the forum.
    You may try:
    SELECT * FROM MyDBNameHere.dbo.OUSR T0
    Thanks,
    Gordon

  • Add a file size option for TIF export

    I would like to have an option to set (uncompressed) file size (or alternatively size in MPix) for a TIF file and have lightroom set the pixel dimensions accordingly. The reason is that many libraries specify a file size requirement. If all your images are cropped the same then working out the dimensions is simple, but if they are all different shapes then it becomes a real pain as you have to work out the dimensions for each one.
    Something somewhat similar has been mentioned for jpeg output, to allow you to specify file size and have lightroom adjust quality to achieve the filesize you want (leaving pixel dimensions fixed).
    ...rob

    If by filesize you mean dimensions (e.g. cropped), then that is built into Lr5 - via smart collection, not library filter.
    If you mean actual source file size (e.g. in bytes), that requires either:
    * John Ellis' AnyFilter, or
    * Jeffrey Friedl's Data Explorer.
    (if there are others, I don't know about them)
    I have plugins for lotsa things, but not everything .
    Cheers,
    Rob

  • File Server - File size\type search and save results to file

    I already have a vb script to do what I want on our file server, but it is very inefficient and slow.  I was thinking that a powershell script may be more suitable now but I don't know anything about scripting in PS.  So far the vb code that I
    have works, and I am not the one who wrote it but I can manipulate it to do what I want it to.  The only problem is, when I scan the shared network locations it stops on some files that are password protected and I don't know how to get around it.  If
    someone else knows of a PS script to go through the file system and get all files of a certain type or size (right now, preferably size) and save the file name, size, path, owner and dates created\modified please point me to it and I can work with that.  If
    not, could I get some help with the current script that I have to somehow get around the password protected files?  They belong in a users' HOME directory so I can't do anything with them.  Here is my code:   
    'Script for scanning file folders for certain types of files and those of a certain size of larger'
    'Note: Script must be placed locally on whichever machine the script is running on'
    '***********VARIABLES FOR USE IN SCRIPT***********'
    'objStartFolder - notes the location of the folder you wish to begin your scan in'
    objStartFolder = "\\FileServer\DriveLetter\SharedFolder"
    'excelFileName - notes the location where you want the output spreadsheet to be saved to'
    excelFileName = "c:\temp\Results_Shared.xls"
    '**********END OF VARIABLES**********'
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    fileName = objFSO.GetFileName(path)
    'beginning row and column for actual data (not headers)'
    excelRow = 3
    excelCol = 1
    'Create Excel Spreadsheet'
    Set objExcel = CreateObject("Excel.Application")
    Set objWorkbook = objExcel.Workbooks.Add()
    CreateExcelHeaders()
    'Loop to go through original folder'
    Set objFolder = objFSO.GetFolder(objStartFolder)
    Set colFiles = objFolder.Files
    For Each objFile in colFiles
    Call Output(excelRow) 'If a subfolder is met, output procedure recursively called'
    Next
    ShowSubfolders objFSO.GetFolder(objStartFolder)
    'Autofit the spreadsheet columns'
    ExcelAutofit()
    'Save Spreadsheet'
    objWorkbook.SaveAs(excelFileName)
    objExcel.Quit
    '*****END OF MAIN SCRIPT*****'
    '*****BEGIN PROCEDURES*****'
    Sub ShowSubFolders(Folder)
    'Loop to go through each subfolder'
    For Each Subfolder in Folder.SubFolders
    Set objFolder = objFSO.GetFolder(Subfolder.Path)
    Set colFiles = objFolder.Files
    For Each objFile in colFiles
    Call Output(excelRow)
    Next
    ShowSubFolders Subfolder
    Next
    End Sub
    Sub Output(excelRow)
    'convert filesize to readable format (MB)'
    fileSize = objFile.Size/1048576
    fileSize = FormatNumber(fileSize, 2)
    'list of file extensions currently automatically included in spreadsheet report:'
    '.wav, .mp3, .mpeg, .avi, .aac, .m4a, .m4p, .mov, .qt, .qtm'
    If fileSize > 100 then'OR objFile.Type="Movie Clip" OR objFile.Type="MP3 Format Sound" _ '
    'OR objFile.Type="MOV File" OR objFile.Type="M4P File" _'
    'OR objFile.Type="M4A File" OR objFile.Type="Video Clip" _'
    'OR objFile.Type="AAC File" OR objFile.Type="Wave Sound" _'
    'OR objFile.Type="QT File" OR objFile.Type="QTM File"'
    'export data to Excel'
    objExcel.Visible = True
    objExcel.Cells(excelRow,1).Value = objFile.Name
    objExcel.Cells(excelRow,2).Value = objFile.Type
    objExcel.Cells(excelRow,3).Value = fileSize & " MB"
    objExcel.Cells(excelRow,4).Value = FindOwner(objFile.Path)
    objExcel.Cells(excelRow,5).Value = objFile.Path
    objExcel.Cells(excelRow,6).Value = objFile.DateCreated
    objExcel.Cells(excelRow,7).Value = objFile.DateLastAccessed
    excelRow = excelRow + 1 'Used to move active cell for data input'
    end if
    End Sub
    'Procedure used to find the owner of a file'
    Function FindOwner(FName)
    On Error Resume Next
    strComputer = "."
    Set objWMIService = GetObject("winmgmts:" _
    & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
    Set colItems = objWMIService.ExecQuery _
    ("ASSOCIATORS OF {Win32_LogicalFileSecuritySetting='" & FName & "'}" _
    & " WHERE AssocClass=Win32_LogicalFileOwner ResultRole=Owner")
    For Each objItem in colItems
    FindOwner = objItem.AccountName
    Next
    End Function
    Sub CreateExcelHeaders
    'create headers for spreadsheet'
    Set objRange = objExcel.Range("A1","G1")
    objRange.Font.Bold = true
    objExcel.Cells(1, 1).Value = "File Name"
    objExcel.Cells(1, 2).Value = "File Type"
    objExcel.Cells(1, 3).Value = "Size"
    objExcel.Cells(1, 4).Value = "Owner"
    objExcel.Cells(1, 5).Value = "Path"
    objExcel.Cells(1, 6).Value = "Date Created"
    objExcel.Cells(1, 7).Value = "Date Modified"
    End Sub
    Sub ExcelAutofit
    'autofit cells'
    Set objRange = objExcel.Range("A1")
    objRange.Activate
    Set objRange = objExcel.ActiveCell.EntireColumn
    objRange.Autofit()
    Set objRange = objExcel.Range("B1")
    objRange.Activate
    Set objRange = objExcel.ActiveCell.EntireColumn
    objRange.Autofit()
    Set objRange = objExcel.Range("C1")
    objRange.Activate
    Set objRange = objExcel.ActiveCell.EntireColumn
    objRange.Autofit()
    Set objRange = objExcel.Range("D1")
    objRange.Activate
    Set objRange = objExcel.ActiveCell.EntireColumn
    objRange.Autofit()
    Set objRange = objExcel.Range("E1")
    objRange.Activate
    Set objRange = objExcel.ActiveCell.EntireColumn
    objRange.Autofit()
    Set objRange = objExcel.Range("F1")
    objRange.Activate
    Set objRange = objExcel.ActiveCell.EntireColumn
    objRange.Autofit()
    Set objRange = objExcel.Range("G1")
    objRange.Activate
    Set objRange = objExcel.ActiveCell.EntireColumn
    objRange.Autofit()
    End Sub
    David Hood

    Accessing Excel through automation is bvery slow no matter what tool you use.  Scanning a disk is very slow for all tools.
    Since Vista all system have a search service that catalogues all major file itmes like size, extension, name and other attributes.  A search of a 1+Tb  volume can return in less that a second if you query the search service.
    You can easily batch the result into Excel by writ4ing to a CSV and opening in Excel. Use a template to apply formats.
    Example.  See how fast this returns results.
    #The following will find all log files in a system that are larger than 10Mb
    $query="SELECT System.ItemName, system.ItemPathDisplay, System.ItemTypeText,System.Size,System.ItemType FROM SystemIndex where system.itemtype='.log' AND system.size > $(10Mb)"
    $conn=New-Object -ComObject adodb.connection
    $conn.open('Provider=Search.CollatorDSO;Extended Properties="Application=Windows";')
    $rs=New-Object -ComObject adodb.recordset
    $rs.open($query, $conn)
    do{
    $p=[ordered]@{
    Name = $rs.Fields.Item('System.ItemName').Value
    Type = $rs.Fields.Item('System.ITemType').Value
    Size = $rs.Fields.Item('System.Size').Value
    New-Object PsObject -Property $p
    $rs.MoveNext()
    }Until($rs.EOF)
    ¯\_(ツ)_/¯

  • Max File size in UFS and ZFS

    Hi,
    Any one can share what is max file size can be created in Solaris 10 UFS and ZFS ?
    What will be max size file compression using tar,gz ?
    Regards
    Siva

    from 'man ufs':
    A sparse file  can have  a  logical  size  of one terabyte.
    However, the  actual amount of data that can be stored
    in  a  file  is  approximately  one  percent  less  than one
    terabyte because of file system overhead.
    As for ZFS, well, its a 128bit filesystem, and the maximum size of a file or directory is 2 ^64^ bytes, which i think is somewhere around 8 exabyte (i.e 8192 petabyte), even though my calculator gave up on calculating it.
    http://www.sun.com/software/solaris/ds/zfs.jsp
    .7/M.
    Edited by: abrante on Feb 28, 2011 7:31 AM
    fixed layout and 2 ^64^

  • Difference in file size in photoshop and bridge

    when I save an image in photoshop (file size 26mb) it  shows as a 70.7 mb in bridge or window explorer. Why?

    fotonut1 wrote:
    The 26 mb number is found when I go to image size (alt cntrl I
    Lets take a look at the Image Sise Dialog. Nothing in it indicates anything about any file size.  One number in it I have never been able t figure exactly how Adobe come up with and the is Pixel Dimensions Number all others I understand.
    Below is a screen capture of the dialog shows 91.4M ???
    3264x4896 is the 3:2 my Cannon 1D4 16MP the first calculator is
    3264x4896=15980544 I can by the camera sensor is 16.1 MP but only delivers an image 15.98MP
    Its 16bit color so each pixel has 3 16bit values for  RGB 6 bytes per pixel
    15980544x6=95883264 bytes 95.9M not 91.4M
    If 91.4 is in hex M  1028 is 1K so 1M 1028000 bytes is 1M
    91.4x1028000=93959200 still short of the 95883264 bytes required so I do not how Adobe come up with the 91.4M #
    Any way 3264x4896 is canvas size.  Has nothing to to with file size.
    Photoshop also supports layers and layers can be canvas size or larger then canvas size as well as smaller then canvas.
    Additionally layers can contain embedded object and object could contain a layer file like a placed PSD image.
    The center section Document Size is the documents Print here you see the document currentle has a 240DPI resolution
    3264pixel width / 240 dpi = 13.6"
    4896pixel height / 240 dpi = 20.4"
    The bottom section is the control section.  With resample NOT checked the top can not be changed Pixel Dimensions will not be changed nor would File size. And all three values in print size are linked. You change one value and Photoshop will chage the other two for you. With resample NOT checked the other controls are not settable. Pixel Dimensions are not change so no interpolation and no aspect ratio change.
    With Resample checked Constrain Proportions will link width and height to preserv the current aspect ratio and not distort the image.
    When you save a document file format is very important layered flat compression all play a roll. It very hard to even guess what the file size will be.

  • Adobe photoshop CS6.Receiving the error "could not complete your request because it is not a valid photoshop document? Tried renaming the files and had working psd files and now all psd files will not open and getting the error listed. Anyone help please?

    Could not complete your request because it is not a valid photoshop document. Tried renaming the file extensions and still no luck.

    Nobody can tell you anything without proper system info or other technical details.
    Mylenium

  • Huge file size for .ai and .eps

    Recently I upgraded fo Illustrator CS6 and found something that is going to screw up my working with clients. The problem is that the .ai and .eps files are having really huge size (67MB on an average). I have used about 6 images (jpeg at 1024x768, less than 1MB each) made them as pattern in the swatches panel and applied on various shapes. The .ai file size is 109MB :O :O :O . Another ridiculous thing is that an art that contains only 3 lines of text plus some circles and squares (3 circles, 2 squares) filled with solid color is around 68MB.
    This is really bad when I have to send the files to the clients. Please tell me how to reduce the file size without compromising on the pattern quality. Please, this is quite urgent.

    Dang! This is really weird. The files I was referring to were for iPad (artboard size 2048x1536). I opened a new doc @ 800x600 and copy pasted everything in the other file and saved it - 109MB file reduced to 402KB jaw dropper!!! I don't know the logic behind it, but I guess it has to be something related to artboard size ...
    Thanks guys.

  • In itunes music the file size is less and in the iPhone it occupies en extra 1gb of space

    in itunes music library the file size is 2.02 GB. But after i transfer those song to iPhone the file size in iPhone is shown as 3.3 GB

    Where are you getting the file size of your music lib?  Are you looking at a playlist view by chance?  The iPhone size in likely including things like videos and album content that takes more space.

  • Photoshop PDF and File Size...And Into Acrobat

    I have an 8x10 at 144 ppi
    I Save As Ps PDF> Compression> Options> DO NOT DOWNSAMPLE
    Compression: JPEG> Image Quality: MAX (gives me 6mb file)
    Compression: JPEG> Image Quality: MEDIUM (gives me 9mb file)
    Ps> Save As JPEG gives me 840kb file
    HOW can I get Ps to Save a PDF in the JPEG file size?
    I want to set the resolution and quality in Ps and SIMPLY move it to a PDF...

    Bingo, unchecking Preserve PS editing fixed the problem...thanks

  • AdobeSend vs AdobeSendNow - file size, address book and link availability control?

    Another user commented and would like answers to these questions, please.
    What is the biggest file size for AdobeSend - can't seem to find any information on this. AdobeSendNow had a limit of 2 GB.
    With AdobeSendNow, we used to be able to control how long the link is valid for to recipients - what about AdobeSend?
    Will an address book be available for the AdobeSend like it did for Adobe SendNow?
    Thanks.

    I want my desktop version back!!     Just not a fan yet of this much more time consuming and clunky product.
    What were you guys thinking?   Why did this new product NOT provide the same "outlook"  or  other connection to our address books?
    Now I must have my address book open, copy addresses in to the tiny little window provided on the web page,
    and type in every recipient's name.   I can no longer draft my message & select a group of individuals to receive reports from my e-mail
    account in outlook; then select to use the ADOBE SEND FUNCTION. 
    On the web, it is so inefficient and risky to try to manuever in the tiny little screens that are provided..
    There is not enough room in the "box"  verfity the address is "actually" entered in correctly.
    And, trying to send to a "group" is even more taxing.   Having to manually enter the addresses makes no sense and
    just begs for an wayward e-mail.  
    The desktop version was soooo much more efficient and seamless to operate.
    Maybe you should let us decide which one to use until you get this new product functioning at its highest level.
    It is definitely as step down.   You should not assume everyone want to be or is working in the "cloud"....
    I am eager to hear if this issue is being addressed so I will know whether to renew or not?
    Thanks.   

Maybe you are looking for

  • How do i download windows 8 on to my imac??

    hi guys please help me im extreamly confused!

  • How to implement different Siebel visibility types in BI Apps

    Standard BI Apps approach to data level security does not allow for users to choose (on report runtime) different security levels/visibility types as in Siebel application (different visibility views - My, My Team, All,..) One possible approach is to

  • Trouble in writing Chinese Characters into database

    I'm developing a JSP web site using ACCESS2002, Tomcat4.0.4 and J2EE 1.4.1. I found my data(chinese chatacters) in mess when I wrote it in to database through sun's own JDBC-ODBC driver though it is displayed correctly in web-browser. I tried in JSP,

  • BAPI to read and create Identifications numbers in CRM bp screen

    Hello. I'm on the hunt for a bapi to update the table 'Identification Numbers' you can view in the bp screen under the 'Identification' tab. I'm in the process of writing code that updates everything to do with a contact person bp and am stumped on t

  • ProgressEvent AS3

    In AS2, i can import a MovieClip from library using the attachMovie, and in this MovieClip i can use the MovieClipLoader Class to load a image and show the progress (using a MovieClip that is inside the MovieClip imported). Example: var mcl:MovieClip