Sponsored Content
Full Discussion: Split folder into dvd size
Top Forums Shell Programming and Scripting Split folder into dvd size Post 302350571 by cabrao on Friday 4th of September 2009 08:47:46 AM
Old 09-04-2009
@ cfajohnson:
I'm having some errors with dir_size? where can I find this function? Thanks in advance.

Best regards,
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Limit Folder Size

Is there a way to limit a certain folder size(e.g. Documents, Desktop)? :) (2 Replies)
Discussion started by: tisdmin
2 Replies

2. Solaris

how to split solaris installation dvd to cd?

hello. i have using OpenSolaris 10. i need to split OpenSolaris 10 Dvd to CD's? how i can? thanks. (1 Reply)
Discussion started by: hotjava
1 Replies

3. UNIX for Dummies Questions & Answers

size of a folder ?

hi, is possible to calculate the size of a folder using ls ? ls -s works only for files.. thanks (2 Replies)
Discussion started by: aneuryzma
2 Replies

4. UNIX for Dummies Questions & Answers

split files based on size

I have a few txt files in some directory and I need to check their sizes one by one. If any of them are greater than 5mb then I need to split the file in two. Can someone help? Thanks. (6 Replies)
Discussion started by: khanvader
6 Replies

5. Shell Programming and Scripting

Split file based on size

Hi Friends, Below is my requirement. I have a file with the below structure. 0001A1.... 0001B1.. .... 0001L1 0002A1 0002B1 ...... 0002L1 .. the first 4 characters are the sequence numbers for a record, A record will start with A1 and end with L1 with same sequence number. Now the... (2 Replies)
Discussion started by: diva_thilak
2 Replies

6. Shell Programming and Scripting

Getting folder more than 100K size

Hi , I am trying to get the folder details having size more than sme specified value and also the name of the folder should be like TEST. so 1. In the current directory search for all the folders having name like TEST 2. Print the list of the folder names having size more than 100... (3 Replies)
Discussion started by: Anupam_Halder
3 Replies

7. Shell Programming and Scripting

Split a folder with huge number of files in n folders

We have a folder XYZ with large number of files (>350,000). how can i split the folder and create say 10 of them XYZ1 to XYZ10 with 35,000 files each. (doesnt matter which files go where). (12 Replies)
Discussion started by: AlokKumbhare
12 Replies

8. Shell Programming and Scripting

Split the File based on Size

I have a file that is about 7 GB in size. The requirement is I should split the file equally in such a way that the size of the split files is less than 2Gb. If the file is less than 2gb, than nothing needs to be done. ( need to done using shell script) Thanks, (4 Replies)
Discussion started by: rudoraj
4 Replies

9. Red Hat

Copy mismatch while copying RHEL DVD to folder

Hi, Here is this weird thing happening here. I mounted RHEL 6.6 DVD on a directoy /a, I am trying to copy it's content to another folder by using command: cp -pr /a/* /new/folder But while I run ls -lrt on both locations it show me difference in number of files. Any specific reason for that.... (5 Replies)
Discussion started by: nixhead
5 Replies

10. UNIX for Beginners Questions & Answers

Split the all files in to 8 parts in a folder

Hi, I have different files and i need to split the files in that folder split in to 8 parts with equal number of lines....! any fastest way of doing this in awk. for an example i have a file called "BillingDetails_BaseFile.csv" with total line count 65536 and i need to split in to 8 parts... (1 Reply)
Discussion started by: Raghuram717
1 Replies
QDateTimeEdit(3qt)														QDateTimeEdit(3qt)

NAME
QDateTimeEdit - Combines a QDateEdit and QTimeEdit widget into a single widget for editing datetimes SYNOPSIS
#include <qdatetimeedit.h> Inherits QWidget. Public Members QDateTimeEdit ( QWidget * parent = 0, const char * name = 0 ) QDateTimeEdit ( const QDateTime & datetime, QWidget * parent = 0, const char * name = 0 ) ~QDateTimeEdit () QDateTime dateTime () const QDateEdit * dateEdit () QTimeEdit * timeEdit () virtual void setAutoAdvance ( bool advance ) bool autoAdvance () const Public Slots virtual void setDateTime ( const QDateTime & dt ) Signals void valueChanged ( const QDateTime & datetime ) Properties QDateTime dateTime - the editor's datetime value DESCRIPTION
The QDateTimeEdit class combines a QDateEdit and QTimeEdit widget into a single widget for editing datetimes. QDateTimeEdit consists of a QDateEdit and QTimeEdit widget placed side by side and offers the functionality of both. The user can edit the date and time by using the keyboard or the arrow keys to increase/decrease date or time values. The Tab key can be used to move from section to section within the QDateTimeEdit widget, and the user can be moved automatically when they complete a section using setAutoAdvance(). The datetime can be set with setDateTime(). The date format is read from the system's locale settings. It is set to year, month, day order if that is not possible. See QDateEdit::setOrder() to change this. Times appear in the order hours, minutes, seconds using the 24 hour clock. It is recommended that the QDateTimeEdit is initialised with a datetime, e.g. QDateTimeEdit *dateTimeEdit = new QDateTimeEdit( QDateTime::currentDateTime(), this ); dateTimeEdit->dateEdit()->setRange( QDateTime::currentDate(), QDateTime::currentDate().addDays( 7 ) ); Here we've created a new QDateTimeEdit set to the current date and time, and set the date to have a minimum date of now and a maximum date of a week from now. Terminology: A QDateEdit widget consists of three 'sections', one each for the year, month and day. Similarly a QTimeEdit consists of three sections, one each for the hour, minute and second. The character that separates each date section is specified with setDateSeparator(); similarly setTimeSeparator() is used for the time sections. <center> [Image Omitted] </center> See also QDateEdit, QTimeEdit, Advanced Widgets, and Time and Date. MEMBER FUNCTION DOCUMENTATION
QDateTimeEdit::QDateTimeEdit ( QWidget * parent = 0, const char * name = 0 ) Constructs an empty datetime edit with parent parent and called name. QDateTimeEdit::QDateTimeEdit ( const QDateTime & datetime, QWidget * parent = 0, const char * name = 0 ) This is an overloaded member function, provided for convenience. It behaves essentially like the above function. Constructs a datetime edit with the initial value datetime, parent parent and called name. QDateTimeEdit::~QDateTimeEdit () Destroys the object and frees any allocated resources. bool QDateTimeEdit::autoAdvance () const Returns TRUE if auto-advance is enabled, otherwise returns FALSE. See also setAutoAdvance(). QDateEdit * QDateTimeEdit::dateEdit () Returns the internal widget used for editing the date part of the datetime. QDateTime QDateTimeEdit::dateTime () const Returns the editor's datetime value. See the "dateTime" property for details. void QDateTimeEdit::setAutoAdvance ( bool advance ) [virtual] Sets the auto advance property of the editor to advance. If set to TRUE, the editor will automatically advance focus to the next date or time section if the user has completed a section. void QDateTimeEdit::setDateTime ( const QDateTime & dt ) [virtual slot] Sets the editor's datetime value to dt. See the "dateTime" property for details. QTimeEdit * QDateTimeEdit::timeEdit () Returns the internal widget used for editing the time part of the datetime. void QDateTimeEdit::valueChanged ( const QDateTime & datetime ) [signal] This signal is emitted every time the date or time changes. The datetime argument is the new datetime. Property Documentation QDateTime dateTime This property holds the editor's datetime value. The datetime edit's datetime which may be an invalid datetime. Set this property's value with setDateTime() and get this property's value with dateTime(). SEE ALSO
http://doc.trolltech.com/qdatetimeedit.html http://www.trolltech.com/faq/tech.html COPYRIGHT
Copyright 1992-2001 Trolltech AS, http://www.trolltech.com. See the license file included in the distribution for a complete license statement. AUTHOR
Generated automatically from the source code. BUGS
If you find a bug in Qt, please report it as described in http://doc.trolltech.com/bughowto.html. Good bug reports help us to help you. Thank you. The definitive Qt documentation is provided in HTML format; it is located at $QTDIR/doc/html and can be read using Qt Assistant or with a web browser. This man page is provided as a convenience for those users who prefer man pages, although this format is not officially supported by Trolltech. If you find errors in this manual page, please report them to qt-bugs@trolltech.com. Please include the name of the manual page (qdatetimeedit.3qt) and the Qt version (3.1.1). Trolltech AS 9 December 2002 QDateTimeEdit(3qt)
All times are GMT -4. The time now is 05:56 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy