Help for this page

Select Code to Download


  1. or download this
    if (scalar(@Files) > 1) {
    
  2. or download this
    if (@Files > 1) {
    
  3. or download this
    if (scalar(@Files) > 0) {
    
  4. or download this
    if (@Files > 0) {
    
  5. or download this
    if (@Files) {